diff options
author | Johannes Gäßler <johannesg@5d6.de> | 2024-03-24 14:21:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-24 14:21:17 +0100 |
commit | 7aed0ffe6855e9cadcf413f288753af4566bfeb8 (patch) | |
tree | e1d6bd18f8d40e7b66b084512762560652d8e6f5 /common | |
parent | ea279d56091b90fbbe063b598f5229d95f58ef68 (diff) |
Fixed lookup compilation issues on Windows (#6273)
Diffstat (limited to 'common')
-rw-r--r-- | common/ngram-cache.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/ngram-cache.cpp b/common/ngram-cache.cpp index 20703d30..3ca112ef 100644 --- a/common/ngram-cache.cpp +++ b/common/ngram-cache.cpp @@ -1,6 +1,8 @@ #include "ngram-cache.h" +#include "common.h" #include "log.h" +#include <cstdint> #include <fstream> void llama_ngram_cache_update(llama_ngram_cache & ngram_cache, int ngram_min, int ngram_max, |