From 30a1a0a7e04a1aaf606eb358f484b240b815df89 Mon Sep 17 00:00:00 2001 From: hankcs Date: Sun, 17 Dec 2023 22:47:01 -0800 Subject: [PATCH] Fix try_override for bool_value which always return true ignoring override->bool_value --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index d6d575f9e..99facbf77 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1937,7 +1937,7 @@ namespace GGUFMeta { target = override->bool_value; return true; } - return true; + return false; } template