소스 검색

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

hankcs 2 년 전
부모
커밋
3c04bf6da8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      llama.cpp

+ 1 - 1
llama.cpp

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