-
Notifications
You must be signed in to change notification settings - Fork 4
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
clang-18: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>' #51
Comments
Thanks for noticing! |
As far as I remember we need unsigned type. Something like I would probably change SEXP simple string to std::vector<octet_t>. Now when there is a good test coverage it shall be safe. |
I realized that we cannot change signature for sexp_simple_string since libsexpp is deployed as shared library We will need to provide an specialization of char_traits for octet_t (unsigned char) |
With clang-18 and libc++ compile failures are observed: (Tested via the OSS-Fuzz config)
Could it make sense to update the submodule in
src/libsexpp
to provide an specialization of char_traits forunsigned char
, or maybe it would be easier to use one of the pre-defined char_traits?Edit: Context:
The text was updated successfully, but these errors were encountered: