From fa0f648a0b9c393e15b0f7f531bc29708a64079f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sun, 4 Aug 2024 18:34:15 -0500 Subject: [PATCH] cleanup --- repertory/repertory_test/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/repertory/repertory_test/main.cpp b/repertory/repertory_test/main.cpp index 54c4d18b..8e202fe1 100644 --- a/repertory/repertory_test/main.cpp +++ b/repertory/repertory_test/main.cpp @@ -21,24 +21,24 @@ */ #if defined(PROJECT_ENABLE_BACKWARD_CPP) #include "backward.hpp" -#endif +#endif // defined(PROJECT_ENABLE_BACKWARD_CPP) #include "initialize.hpp" #include "test_common.hpp" #if defined(_WIN32) #include "utils/cli_utils.hpp" -#endif // _WIN32 +#endif // defined(_WIN32) using namespace repertory; #if defined(_WIN32) std::size_t PROVIDER_INDEX{0U}; -#endif // _WIN32 +#endif // defined(_WIN32) auto main(int argc, char **argv) -> int { #if defined(PROJECT_ENABLE_BACKWARD_CPP) static backward::SignalHandling sh; -#endif +#endif // defined(PROJECT_ENABLE_BACKWARD_CPP) if (not repertory::project_initialize()) { std::cerr << "fatal: failed to initialize repertory" << std::endl; @@ -58,7 +58,7 @@ auto main(int argc, char **argv) -> int { utils::cli::parse_option(args, "--provider_index", 1U)[0U]) + 1U); } -#endif // _WIN32 +#endif // defined(_WIN32) ::testing::InitGoogleTest(&argc, argv); auto ret = RUN_ALL_TESTS();