fix ci build warnings
This commit is contained in:
parent
3242eba98f
commit
99ae274ba2
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue