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

This commit is contained in:
hankcs 2023-12-18 05:14:58 -08:00 committed by GitHub
parent 2994f0c5a2
commit 3c04bf6da8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1937,7 +1937,7 @@ namespace GGUFMeta {
target = override->bool_value;
return true;
}
return true;
return false;
}
template<typename OT>