From 3f95ac68a1d7cf764f58e360ae9b4c43e5913095 Mon Sep 17 00:00:00 2001 From: Luca Fedeli Date: Wed, 30 Aug 2023 03:36:46 +0200 Subject: Clang tidy CI test: add more readability checks to clang tidy CI test (#4146) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add more readability checks to clang-tidy CI test * reformat check list * starting to address issues found with clang-tidy£ * addressing issues * remove check * address issues * address all issues * address issue found with github code scanning --- Source/ablastr/utils/msg_logger/MsgLogger.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Source/ablastr/utils/msg_logger/MsgLogger.cpp') diff --git a/Source/ablastr/utils/msg_logger/MsgLogger.cpp b/Source/ablastr/utils/msg_logger/MsgLogger.cpp index f06a35eda..4ba36ee82 100644 --- a/Source/ablastr/utils/msg_logger/MsgLogger.cpp +++ b/Source/ablastr/utils/msg_logger/MsgLogger.cpp @@ -38,8 +38,8 @@ namespace std::vector get_serialized_gather_rank_msgs( const std::vector& my_msgs, - const int gather_rank, - const int my_rank); + int gather_rank, + int my_rank); /** * \brief This function generates data to send back to the "gather rank" @@ -53,9 +53,9 @@ namespace std::vector compute_package_for_gather_rank( const std::vector& serialized_gather_rank_msgs, - const std::int64_t gather_rank_how_many_msgs, + std::int64_t gather_rank_how_many_msgs, const std::map& my_msg_map, - const bool is_gather_rank + bool is_gather_rank ); /** @@ -74,7 +74,7 @@ namespace std::pair, std::vector> gather_all_data( const std::vector& package_for_gather_rank, - const int gather_rank, const int my_rank); + int gather_rank, int my_rank); /** * \brief This function converts a vector of Msg struct into a byte array -- cgit v1.2.3