Skip to content

Commit 3c04bf6

Browse files
authored
llama : fix try_override for bool_value which always return true (#4519)
1 parent 2994f0c commit 3c04bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@ namespace GGUFMeta {
19371937
target = override->bool_value;
19381938
return true;
19391939
}
1940-
return true;
1940+
return false;
19411941
}
19421942

19431943
template<typename OT>

0 commit comments

Comments
 (0)