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:
Mohan Krishnan
2025-08-25 16:34:01 +08:00
committed by GitHub
parent af13c9a292
commit 50f7119dfd

View File

@@ -15,6 +15,7 @@
#include <vector>
#include <cinttypes>
#include <cstring>
#include <string>
#ifdef __GNUC__
#ifdef __MINGW32__