You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enabling narrowing errors by removing if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "(Apple)?Clang") add_cxx_flag_if_supported(-Wno-narrowing) endif()
in test_conformance/integer_ops/CMakeLists.txt produces many errors. A common example is: test_conformance/integer_ops/main.cpp:159:140: error: narrowing conversion of '18446462598732906495ull' from 'long long unsigned int' to 'cl_long {aka long int}' inside { } [-Wnarrowing]
The text was updated successfully, but these errors were encountered:
Enabling narrowing errors by removing
if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "(Apple)?Clang") add_cxx_flag_if_supported(-Wno-narrowing) endif()
in test_conformance/integer_ops/CMakeLists.txt produces many errors. A common example is:
test_conformance/integer_ops/main.cpp:159:140: error: narrowing conversion of '18446462598732906495ull' from 'long long unsigned int' to 'cl_long {aka long int}' inside { } [-Wnarrowing]
The text was updated successfully, but these errors were encountered: