Skip to content

Commit fbdab63

Browse files
MrSMlTmglambda
authored andcommitted
Fix: Compile failure due to Microsoft STL breaking change (ggml-org#11836)
1 parent 771b547 commit fbdab63

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

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>

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>

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)