Skip to content

Commit a50c266

Browse files
committed
fmt 2
1 parent dfb86a7 commit a50c266

9 files changed

Lines changed: 27 additions & 2 deletions

File tree

.clang-format

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ UseTab: Never
66
AllowShortFunctionsOnASingleLine: Empty
77
IndentPPDirectives: AfterHash
88
SortIncludes: true
9+
IncludeCategories:
10+
- Regex: '^<gtest/.*\.h>'
11+
Priority: 1
12+
SortPriority: 0
13+
CaseSensitive: false
14+
- Regex: '^<.*\.h>'
15+
Priority: 2
16+
SortPriority: 0
17+
CaseSensitive: false
18+
- Regex: '^<.*'
19+
Priority: 3
20+
SortPriority: 0
21+
CaseSensitive: false
22+
- Regex: '.*'
23+
Priority: 4
24+
SortPriority: 0
25+
CaseSensitive: false
926
FixNamespaceComments: true
1027
InsertBraces: true
1128
QualifierAlignment: Left

modules/runners/src/runners.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include "runners/include/runners.hpp"
22

33
#include <gtest/gtest.h>
4+
45
#include <mpi.h>
56

67
#include <chrono>

modules/util/include/func_test_util.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <gtest/gtest.h>
4+
45
#include <tbb/tick_count.h>
56

67
#include <concepts>

modules/util/include/perf_test_util.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#pragma once
22

3-
#include <benchmark/benchmark.h>
43
#include <gtest/gtest.h>
4+
5+
#include <benchmark/benchmark.h>
56
#include <mpi.h>
67
#include <omp.h>
78
#include <tbb/tick_count.h>

tasks/common/runners/performance.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
#include <gtest/gtest.h>
2+
13
#include <benchmark/benchmark.h>
24
#include <benchmark/reporter.h>
3-
#include <gtest/gtest.h>
45
#include <mpi.h>
56

67
#include <chrono>

tasks/example/processes/t1/tests/functional/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <gtest/gtest.h>
2+
23
#include <stb/stb_image.h>
34

45
#include <algorithm>

tasks/example/processes/t2/tests/functional/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <gtest/gtest.h>
2+
23
#include <stb/stb_image.h>
34

45
#include <algorithm>

tasks/example/processes/t3/tests/functional/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <gtest/gtest.h>
2+
23
#include <stb/stb_image.h>
34

45
#include <algorithm>

tasks/example/threads/tests/functional/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <gtest/gtest.h>
2+
23
#include <stb/stb_image.h>
34

45
#include <algorithm>

0 commit comments

Comments
 (0)