diff --git a/cpp/include/cudf/detail/device_scalar.hpp b/cpp/include/cudf/detail/device_scalar.hpp index 492ac6ce659..16ca06c6561 100644 --- a/cpp/include/cudf/detail/device_scalar.hpp +++ b/cpp/include/cudf/detail/device_scalar.hpp @@ -35,6 +35,8 @@ class device_scalar : public rmm::device_scalar { #endif ~device_scalar() = default; +// Implementation is the same as what compiler should generate +// Could not use default move constructor as 11.8 compiler fails to generate it #ifdef __CUDACC__ #pragma nv_exec_check_disable #endif diff --git a/cpp/src/join/distinct_hash_join.cu b/cpp/src/join/distinct_hash_join.cu index 562e9652bfd..515d28201e8 100644 --- a/cpp/src/join/distinct_hash_join.cu +++ b/cpp/src/join/distinct_hash_join.cu @@ -17,7 +17,6 @@ #include "join_common_utils.hpp" #include -#include #include #include #include