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 67cb84e944
commit 7f4d1160a6
1 changed files with 1 additions and 1 deletions

View File

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