diff --git a/cpp/src/column/column_factories.cpp b/cpp/src/column/column_factories.cpp index 2587271193d..86059a72e8f 100644 --- a/cpp/src/column/column_factories.cpp +++ b/cpp/src/column/column_factories.cpp @@ -172,4 +172,4 @@ std::unique_ptr make_dictionary_from_scalar(scalar const& s, 0); } -} // namespace cudf \ No newline at end of file +} // namespace cudf diff --git a/cpp/src/scalar/scalar.cpp b/cpp/src/scalar/scalar.cpp index 252d1af3948..f21b1c7ca20 100644 --- a/cpp/src/scalar/scalar.cpp +++ b/cpp/src/scalar/scalar.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "structs/utilities.hpp" +#include #include #include diff --git a/cpp/src/structs/structs_column_factories.cu b/cpp/src/structs/structs_column_factories.cu index de58cbb0d68..d8b94d1c448 100644 --- a/cpp/src/structs/structs_column_factories.cu +++ b/cpp/src/structs/structs_column_factories.cu @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "structs/utilities.hpp" +#include #include #include diff --git a/cpp/tests/scalar/factories_test.cpp b/cpp/tests/scalar/factories_test.cpp index ade90947568..e2f2c26a16e 100644 --- a/cpp/tests/scalar/factories_test.cpp +++ b/cpp/tests/scalar/factories_test.cpp @@ -177,18 +177,16 @@ TEST_F(StructScalarFactory, Basic) // table_view constructor { - auto sc = cudf::make_struct_scalar(cudf::table_view{children}); - auto s = static_cast*>(sc.get()); - auto sview = s->view(); + auto sc = cudf::make_struct_scalar(cudf::table_view{children}); + auto s = static_cast*>(sc.get()); EXPECT_TRUE(s->is_valid()); CUDF_TEST_EXPECT_TABLES_EQUIVALENT(cudf::table_view{children}, s->view()); } // host_span constructor { - auto sc = cudf::make_struct_scalar(cudf::host_span{children}); - auto s = static_cast*>(sc.get()); - auto sview = s->view(); + auto sc = cudf::make_struct_scalar(cudf::host_span{children}); + auto s = static_cast*>(sc.get()); EXPECT_TRUE(s->is_valid()); CUDF_TEST_EXPECT_TABLES_EQUIVALENT(cudf::table_view{children}, s->view()); }