diff --git a/cpp/include/cudf/column/column_view.hpp b/cpp/include/cudf/column/column_view.hpp index cbf59058a63..9e59b0c6a62 100644 --- a/cpp/include/cudf/column/column_view.hpp +++ b/cpp/include/cudf/column/column_view.hpp @@ -18,7 +18,6 @@ #include #include - #include /** diff --git a/cpp/include/cudf/detail/gather.cuh b/cpp/include/cudf/detail/gather.cuh index 8dd24f2acea..bf488621d52 100644 --- a/cpp/include/cudf/detail/gather.cuh +++ b/cpp/include/cudf/detail/gather.cuh @@ -369,7 +369,6 @@ struct column_gatherer_impl { } }; - /** * @brief Column gather specialization for dictionary column type. */ @@ -487,7 +486,6 @@ struct column_gatherer_impl { } }; - /** * @brief Function object for applying a transformation on the gathermap * that converts negative indices to positive indices @@ -600,7 +598,6 @@ void gather_bitmask(table_view const& source, } } - /** * @brief Gathers the specified rows of a set of columns according to a gather map. * diff --git a/cpp/include/cudf/detail/scatter.cuh b/cpp/include/cudf/detail/scatter.cuh index c10105b9cb0..30764b9b89f 100644 --- a/cpp/include/cudf/detail/scatter.cuh +++ b/cpp/include/cudf/detail/scatter.cuh @@ -81,15 +81,11 @@ auto scatter_to_gather(MapIterator scatter_map_begin, template struct column_scatterer_impl { - std::unique_ptr operator()(...) const - { - CUDF_FAIL("Unsupported type for scatter."); - } + std::unique_ptr operator()(...) const { CUDF_FAIL("Unsupported type for scatter."); } }; template -struct column_scatterer_impl()> >{ - +struct column_scatterer_impl()>> { template std::unique_ptr operator()(column_view const& source, MapIterator scatter_map_begin, @@ -145,7 +141,6 @@ struct column_scatterer_impl { } }; - template <> struct column_scatterer_impl { template diff --git a/cpp/src/interop/dlpack.cpp b/cpp/src/interop/dlpack.cpp index bfd2b940ee8..3333b80ebfe 100644 --- a/cpp/src/interop/dlpack.cpp +++ b/cpp/src/interop/dlpack.cpp @@ -30,7 +30,6 @@ namespace cudf { namespace { struct get_column_data_impl { - template ()>* = nullptr> void const* operator()(column_view const& col) { diff --git a/cpp/src/interop/from_arrow.cpp b/cpp/src/interop/from_arrow.cpp index 94c2b9afd73..6306056f007 100644 --- a/cpp/src/interop/from_arrow.cpp +++ b/cpp/src/interop/from_arrow.cpp @@ -118,7 +118,7 @@ struct dispatch_to_cudf_column { rmm::cuda_stream_view stream, rmm::mr::device_memory_resource* mr) { - CUDF_FAIL("Unsupported type in from_arrow."); + CUDF_FAIL("Unsupported type in from_arrow."); } template ()>* = nullptr> diff --git a/cpp/src/jit/type.cpp b/cpp/src/jit/type.cpp index fb1108a4e27..4c4be2878df 100644 --- a/cpp/src/jit/type.cpp +++ b/cpp/src/jit/type.cpp @@ -34,7 +34,8 @@ struct get_data_ptr_functor { // TODO: both the failing operators can be combined into single template template - std::enable_if_t(), const void*> operator()(column_view const& view) + std::enable_if_t(), const void*> operator()( + column_view const& view) { CUDF_FAIL("Invalid data type for JIT operation"); } diff --git a/cpp/src/merge/merge.cu b/cpp/src/merge/merge.cu index f00ce1df827..6fb5579d77f 100644 --- a/cpp/src/merge/merge.cu +++ b/cpp/src/merge/merge.cu @@ -243,7 +243,7 @@ struct column_merger { rmm::cuda_stream_view stream, rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource()) const { - CUDF_FAIL("Unsupported type for merge."); + CUDF_FAIL("Unsupported type for merge."); } // column merger operator;