llama : fix try_override for bool_value which always return true (#4519)

This commit is contained in:
hankcs
2023-12-18 15:14:58 +02:00
committed by GitHub
parent 2994f0c5a2
commit 3c04bf6da8
+1 -1
View File
@@ -1937,7 +1937,7 @@ namespace GGUFMeta {
target = override->bool_value;
return true;
}
return true;
return false;
}
template<typename OT>