Fix undefined template std::basic_string<char> (#726)
Getting this error when compiling on Mac with clang 17 Simple fix, add the string header in src/llama-impl.h Co-authored-by: Mohan Krishnan <mohan.krishnan@grab.com>
This commit is contained in:
parent
7a68553487
commit
cae0f4dfa4
|
|
@ -15,6 +15,7 @@
|
|||
#include <vector>
|
||||
#include <cinttypes>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#ifdef __MINGW32__
|
||||
|
|
|
|||
Loading…
Reference in New Issue