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
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;
}
The text was updated successfully, but these errors were encountered:
thanks for your message, this is most likely due to very strict warnings and warnings that are converted into errors (perhabys by -Werror) by your compiler. The code could be adapted however, in case this information still doesn't help you solve your problem.
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:
...
----> HERE ---> ++it, ++str, --str_len;
}
return !str_len;
}
The text was updated successfully, but these errors were encountered: