You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
error now in tinyutf-8:
include\libs\tinyutf8\tinyutf8.h|2360|error: cannot increment value of type 'const value_type[LITLEN]' (aka 'const ValueType[LITLEN]')|
here:
...
while( it != end && str_len ){
if( *it != *str )
return false;
----> HERE ---> ++it, ++str, --str_len;
}
return !str_len;
}