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;
}