summaryrefslogtreecommitdiff
path: root/llama.cpp
diff options
context:
space:
mode:
authorhankcs <cnhankmc@gmail.com>2023-12-18 05:14:58 -0800
committerGitHub <noreply@github.com>2023-12-18 15:14:58 +0200
commit3c04bf6da89eaf4c7d317e0518f0687dfcbf2de7 (patch)
tree9fea3f34bcb99f1e752646b3e5d7cc296dfa19d2 /llama.cpp
parent2994f0c5a2e8c96955b422dedc93ec2595d16b82 (diff)
llama : fix try_override for bool_value which always return true (#4519)
Diffstat (limited to 'llama.cpp')
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index d6d575f9..99facbf7 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -1937,7 +1937,7 @@ namespace GGUFMeta {
target = override->bool_value;
return true;
}
- return true;
+ return false;
}
template<typename OT>