From 12cf0bee640f1e74f5c626a8f558dc873ea3313e Mon Sep 17 00:00:00 2001 From: Karthikeyan Natarajan Date: Tue, 26 Jul 2022 13:29:55 +0530 Subject: [PATCH] fix clang-format style fix --- cpp/tests/io/fst/fst_test.cu | 5 ----- cpp/tests/io/fst/logical_stack_test.cu | 2 -- cpp/tests/io/nested_json_test.cu | 2 +- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/cpp/tests/io/fst/fst_test.cu b/cpp/tests/io/fst/fst_test.cu index 21ba6a783d1..5d169cd9ac1 100644 --- a/cpp/tests/io/fst/fst_test.cu +++ b/cpp/tests/io/fst/fst_test.cu @@ -26,7 +26,6 @@ #include #include -#include #include #include @@ -211,10 +210,6 @@ TEST_F(FstTest, GroundTruth) auto& d_input = static_cast&>(*d_input_string); input = d_input.to_string(stream); - - - - // Prepare input & output buffers constexpr std::size_t single_item = 1; hostdevice_vector output_gpu(input.size(), stream_view); diff --git a/cpp/tests/io/fst/logical_stack_test.cu b/cpp/tests/io/fst/logical_stack_test.cu index d7bede1ee5e..3c2cdd7fb5c 100644 --- a/cpp/tests/io/fst/logical_stack_test.cu +++ b/cpp/tests/io/fst/logical_stack_test.cu @@ -24,8 +24,6 @@ #include #include #include -#include -#include #include #include diff --git a/cpp/tests/io/nested_json_test.cu b/cpp/tests/io/nested_json_test.cu index 6116de31f14..1e40e14c289 100644 --- a/cpp/tests/io/nested_json_test.cu +++ b/cpp/tests/io/nested_json_test.cu @@ -55,7 +55,7 @@ void print_tree_representation(std::string const& json_input, nested_json::tree_meta_t const& tree_rep) { for (std::size_t i = 0; i < tree_rep.node_categories.size(); i++) { - std::size_t parent_id = tree_rep.parent_node_ids[i]; + std::size_t parent_id = tree_rep.parent_node_ids[i]; std::stack path; path.push(i); while (parent_id != nested_json::parent_node_sentinel) {