Fix compiler complaints
This commit is contained in:
parent
b67c81d1fa
commit
db78320b4d
1 changed files with 1 additions and 1 deletions
|
@ -576,7 +576,7 @@ namespace std {
|
||||||
string_type transform_primary(It first, It last) const {
|
string_type transform_primary(It first, It last) const {
|
||||||
(void) first;
|
(void) first;
|
||||||
(void) last;
|
(void) last;
|
||||||
GGML_ASSERT(*first < MAX_CODEPOINTS); // valid codepoint
|
GGML_ASSERT((uint32_t) *first < MAX_CODEPOINTS); // check valid codepoint
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue