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
Adding -fno-rtti flag leads to fail the build with the following errors:
-fno-rtti
range-v3-src/include/range/v3/view/any_view.hpp:129:24: error: use of typeid requires -frtti , info_(&typeid(rtti_tag))
range-v3-src/include/range/v3/view/any_view.hpp:135:58: error: use of typeid requires -frtti RANGES_ASSERT(obj_ && info_ && *info_ == typeid(rtti_tag)); ^ range-v3-src/include/range/v3/detail/config.hpp:63:23: note: expanded from macro 'RANGES_ASSERT' #define RANGES_ASSERT assert
The text was updated successfully, but these errors were encountered:
any_view
any
I think when (static) RTTI is disabled, any_view shouldn't be provided.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Adding
-fno-rtti
flag leads to fail the build with the following errors:The text was updated successfully, but these errors were encountered: