diff options
author | hankcs <cnhankmc@gmail.com> | 2023-12-18 05:14:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 15:14:58 +0200 |
commit | 3c04bf6da89eaf4c7d317e0518f0687dfcbf2de7 (patch) | |
tree | 9fea3f34bcb99f1e752646b3e5d7cc296dfa19d2 /llama.cpp | |
parent | 2994f0c5a2e8c96955b422dedc93ec2595d16b82 (diff) |
llama : fix try_override for bool_value which always return true (#4519)
Diffstat (limited to 'llama.cpp')
-rw-r--r-- | llama.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1937,7 +1937,7 @@ namespace GGUFMeta { target = override->bool_value; return true; } - return true; + return false; } template<typename OT> |