We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When building with C++ '20. Error due to default of "-1" on L221-222
constexpr unicode_script::ScriptType kAnyType = static_cast<unicode_script::ScriptType>(-1);
The text was updated successfully, but these errors were encountered:
Temporary workaround for anyone facing the same issue:
Add to CMakeLists.txt set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-enum-constexpr-conversion" )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-enum-constexpr-conversion" )
Sorry, something went wrong.
No branches or pull requests
When building with C++ '20.
Error due to default of "-1" on L221-222
The text was updated successfully, but these errors were encountered: