-
-
Notifications
You must be signed in to change notification settings - Fork 175
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
C++17-friendly ? #335
Comments
Thanks for pointing that out, the 0b... notation used is only valid with C++14 and later. I would expect that to be valid if compiling with C++17, though. In practice many C++11 compilers also support it, which is why we missed it in unit tests, even with warnings treated as errors. We'll change it to hexadecimal notation in the next release, which should be soon. |
Great ! |
The candidate release is currently on master, which should fix the issue you reported. |
Fixed in 0.168.0 |
Would it be possible to make this library compliant with C++17 ? I'm getting a lot of
And as in my current project I'm treating warning as errors I can not use the latest version of jsoncons.
Thanks,
The text was updated successfully, but these errors were encountered: