Skip to content

Commit c629ff1

Browse files
authored
Revert .clang-format header priorities change (#803)
1 parent 7d6efad commit c629ff1

3 files changed

Lines changed: 7 additions & 14 deletions

File tree

.clang-format

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ UseTab: Never
66
AllowShortFunctionsOnASingleLine: Empty
77
IndentPPDirectives: AfterHash
88
SortIncludes: true
9-
IncludeCategories:
10-
- Regex: '^<gtest/.*'
11-
Priority: 1
12-
- Regex: '^<.*'
13-
Priority: 2
14-
- Regex: '.*'
15-
Priority: 3
169
FixNamespaceComments: true
1710
InsertBraces: true
1811
QualifierAlignment: Left

modules/util/include/perf_test_util.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#pragma once
22

3+
#include <benchmark/benchmark.h>
34
#include <gtest/gtest.h>
5+
#include <mpi.h>
6+
#include <omp.h>
7+
#include <tbb/tick_count.h>
48

5-
#include <benchmark/benchmark.h>
69
#include <chrono>
710
#include <cstddef>
811
#include <cstdint>
912
#include <exception>
1013
#include <functional>
1114
#include <iostream>
12-
#include <mpi.h>
13-
#include <omp.h>
1415
#include <stdexcept>
1516
#include <string>
1617
#include <string_view>
17-
#include <tbb/tick_count.h>
1818
#include <tuple>
1919
#include <type_traits>
2020
#include <utility>

tasks/common/runners/performance.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
#include <gtest/gtest.h>
2-
31
#include <benchmark/benchmark.h>
42
#include <benchmark/reporter.h>
3+
#include <gtest/gtest.h>
4+
#include <mpi.h>
5+
56
#include <chrono>
67
#include <cstddef>
78
#include <cstdint>
@@ -12,7 +13,6 @@
1213
#include <fstream>
1314
#include <iostream>
1415
#include <memory>
15-
#include <mpi.h>
1616
#include <random>
1717
#include <stdexcept>
1818
#include <string>

0 commit comments

Comments
 (0)