From ad2e2c71d49b6407e78cfc3740dad9fbd1a77ece Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 1 Dec 2020 06:43:17 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 5d5cc53e --- sorting/count_inversions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sorting/count_inversions.cpp b/sorting/count_inversions.cpp index e1337c7c8..5369600e6 100644 --- a/sorting/count_inversions.cpp +++ b/sorting/count_inversions.cpp @@ -227,7 +227,7 @@ static void test() { // template // static void body() { // // Input your own sequence -// uint64_t size; +// uint64_t size; // T input; // std::cout << "Enter number of elements:"; // std::cin >> size; @@ -264,7 +264,7 @@ static void test() { * @returns 0 on exit */ int main() { - test(); // Run test implementations + test(); // Run test implementations // body(); // test your own array return 0; }