diff --git a/cmake/Modules/ConfigureCUDA.cmake b/cmake/Modules/ConfigureCUDA.cmake index a160fbd15..85382b073 100644 --- a/cmake/Modules/ConfigureCUDA.cmake +++ b/cmake/Modules/ConfigureCUDA.cmake @@ -31,11 +31,6 @@ list( RAPIDSMPF_CUDA_FLAGS -Xcompiler=-Wall,-Werror,-Wextra,-Wsign-conversion,-Wno-unknown-pragmas,-Wno-missing-field-initializers,-Wno-error=deprecated-declarations ) -# This warning needs to be suppressed because some parts of rapidsmpf instantiate templated CCCL -# functions in contexts where the resulting instantiations would have internal linkage (e.g. in -# anonymous namespaces). In such contexts, the visibility attribute on the template is ignored, and -# the compiler issues a warning. This is not a problem and will be fixed in future versions of CCCL. -list(APPEND RAPIDSMPF_CUDA_FLAGS -diag-suppress=1407) if(DISABLE_DEPRECATION_WARNINGS) list(APPEND RAPIDSMPF_CXX_FLAGS -Wno-deprecated-declarations)