diff --git a/cpp/.clang-format b/cpp/.clang-format index 0c05436e9..6019a6f3d 100644 --- a/cpp/.clang-format +++ b/cpp/.clang-format @@ -72,15 +72,6 @@ ForEachMacros: - Q_FOREACH - BOOST_FOREACH IncludeBlocks: Preserve -IncludeCategories: - - Regex: '^' - Priority: 2 - - Regex: '^<.*\.h>' - Priority: 1 - - Regex: '^<.*' - Priority: 2 - - Regex: '.*' - Priority: 3 IncludeIsMainRegex: '([-_](test|unittest))?$' IndentCaseLabels: true IndentPPDirectives: None diff --git a/cpp/src/io/shp/polygon_shapefile_reader.cpp b/cpp/src/io/shp/polygon_shapefile_reader.cpp index 573f266a4..0088f080e 100644 --- a/cpp/src/io/shp/polygon_shapefile_reader.cpp +++ b/cpp/src/io/shp/polygon_shapefile_reader.cpp @@ -14,9 +14,10 @@ * limitations under the License. */ -#include #include +#include + #include #include diff --git a/cpp/tests/interpolate/cubic_spline_test.cpp b/cpp/tests/interpolate/cubic_spline_test.cpp index bc86e0319..2a6406a61 100644 --- a/cpp/tests/interpolate/cubic_spline_test.cpp +++ b/cpp/tests/interpolate/cubic_spline_test.cpp @@ -28,9 +28,9 @@ #include #include +#include #include #include -#include struct CubicSplineTest : public cudf::test::BaseFixture { };