Skip to content

Commit 4e3db1e

Browse files
MrSMlTtinglou
authored andcommitted
Fix: Compile failure due to Microsoft STL breaking change (ggml-org#11836)
1 parent b0de481 commit 4e3db1e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Diff for: common/log.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "log.h"
22

3+
#include <chrono>
34
#include <condition_variable>
45
#include <cstdarg>
56
#include <cstdio>

Diff for: examples/imatrix/imatrix.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "log.h"
44
#include "llama.h"
55

6+
#include <chrono>
67
#include <cmath>
78
#include <cstdio>
89
#include <cstring>

Diff for: examples/perplexity/perplexity.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "log.h"
44
#include "llama.h"
55

6+
#include <chrono>
67
#include <algorithm>
78
#include <array>
89
#include <atomic>

0 commit comments

Comments
 (0)