Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compiling error #71

Open
jalcazo opened this issue Dec 15, 2024 · 1 comment
Open

compiling error #71

jalcazo opened this issue Dec 15, 2024 · 1 comment

Comments

@jalcazo
Copy link

jalcazo commented Dec 15, 2024

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

@DuffsDevice
Copy link
Owner

Hey,

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.

Thanks,
Jakob

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants