fix ci build warnings

This commit is contained in:
Charles Xu 2026-02-07 12:33:26 +01:00
parent 3242eba98f
commit 99ae274ba2
1 changed files with 2 additions and 4 deletions

View File

@ -2216,8 +2216,7 @@ static inline uint8_t map_int8_to_uint2_idx(int32_t v0) {
case 3:
return 3;
default:
GGML_ASSERT(false);
return 0;
GGML_UNREACHABLE();
}
}
@ -2233,8 +2232,7 @@ static inline int32_t map_uint2_idx_to_int8(uint8_t v0) {
case 3:
return 3;
default:
GGML_ASSERT(false);
return 0;
GGML_UNREACHABLE();
}
}