Skip to content

Commit

Permalink
Fix compiler complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
jaime-m-p committed Aug 13, 2024
1 parent b67c81d commit db78320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unicode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ namespace std {
string_type transform_primary(It first, It last) const {
(void) first;
(void) last;
GGML_ASSERT(*first < MAX_CODEPOINTS); // valid codepoint
GGML_ASSERT((uint32_t) *first < MAX_CODEPOINTS); // check valid codepoint
return {};
}

Expand Down

0 comments on commit db78320

Please sign in to comment.