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 GCC v7.3.1, a number of static asserts in type_traits_ext.hpp and test_type_traits_ext.cpp fail:
type_traits_ext.hpp
test_type_traits_ext.cpp
include/cetl/type_traits_ext.hpp:125:1: error: static assertion failed: self-test failure static_assert(is_convertible_without_narrowing<int, long long>::value, "self-test failure"); ^~~~~~~~~~~~~ cetlvast/suites/unittest/test_type_traits_ext.cpp:53:1: error: static assertion failed static_assert(is_convertible_without_narrowing<int, long long>::value, ""); ^~~~~~~~~~~~~ cetlvast/suites/unittest/test_type_traits_ext.cpp:56:1: error: static assertion failed static_assert(is_convertible_without_narrowing<float, long double>::value, ""); ^~~~~~~~~~~~~ cetlvast/suites/unittest/test_type_traits_ext.cpp:71:1: error: static assertion failed static_assert(!is_convertible_without_narrowing<long, foo_val>::value, ""); ^~~~~~~~~~~~~ cetlvast/suites/unittest/test_type_traits_ext.cpp:73:1: error: static assertion failed static_assert(!is_convertible_without_narrowing<long, foo_ref>::value, ""); ^~~~~~~~~~~~~ cetlvast/suites/unittest/test_type_traits_ext.cpp:99:1: error: static assertion failed static_assert( ^~~~~~~~~~~~~
The text was updated successfully, but these errors were encountered:
serges147
No branches or pull requests
When building with GCC v7.3.1, a number of static asserts in
type_traits_ext.hpp
andtest_type_traits_ext.cpp
fail:The text was updated successfully, but these errors were encountered: