blob: 3e33e379fcb549dd719a5b156f2690880e5c418d [file] [log] [blame]
129c129
< assert(chars_left == strlen(c_string)); // Unless there's a \0 in there?
---
> assert(static_cast<size_t>(chars_left) == strlen(c_string)); // Unless there's a \0 in there?