From cbc43aa411c7ca7064612838cc6711ee1381fbb9 Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Sat, 13 Apr 2024 15:12:03 +0200 Subject: [PATCH] llama: remove kv override str_value initialization as it does not compile on some toolchain --- llama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.h b/llama.h index 894285011..0cc0d3f29 100644 --- a/llama.h +++ b/llama.h @@ -205,7 +205,7 @@ extern "C" { int64_t int_value; double float_value; bool bool_value; - char * str_value = nullptr; + char * str_value; }; };