Skip to content

Commit b276e68

Browse files
committed
swap include order
1 parent d7cd0be commit b276e68

18 files changed

+42
-47
lines changed

test/unittest/basic_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/all>
42
#include <type_traits>
53

4+
#include <gtest/gtest.h>
5+
66
using namespace atcoder;
77
using uint = unsigned int;
88
using ll = long long;

test/unittest/bit_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/internal_bit>
42
#include <numeric>
53

4+
#include <gtest/gtest.h>
5+
66
using namespace atcoder;
77
using ll = long long;
88
using ull = unsigned long long;

test/unittest/convolution_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/convolution>
42
#include <atcoder/modint>
53
#include <random>
64
#include "../utils/random.hpp"
75

6+
#include <gtest/gtest.h>
7+
88
using namespace atcoder;
99
using uint = unsigned int;
1010
using ll = long long;

test/unittest/dsu_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/dsu>
42
#include <numeric>
53

4+
#include <gtest/gtest.h>
5+
66
using namespace atcoder;
77
using ll = long long;
88
using ull = unsigned long long;

test/unittest/fenwicktree_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/fenwicktree>
42
#include <atcoder/modint>
53
#include <numeric>
64

5+
#include <gtest/gtest.h>
6+
77
using namespace atcoder;
88
using ll = long long;
99
using ull = unsigned long long;

test/unittest/internal_math_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#include <atcoder/internal_math>
2-
31
#include <gtest/gtest.h>
42
#include <numeric>
53
#include "../utils/math.hpp"
64

5+
#include <atcoder/internal_math>
6+
77
using namespace atcoder;
88
using uint = unsigned int;
99
using ll = long long;

test/unittest/lazysegtree_stress_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
#include <gtest/gtest.h>
2-
31
#include <algorithm>
42
#include <atcoder/lazysegtree>
53
#include "../utils/random.hpp"
64
#include <string>
75
#include <vector>
86

7+
#include <gtest/gtest.h>
8+
99
using namespace atcoder;
1010

1111
// time manager

test/unittest/lazysegtree_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#include <gtest/gtest.h>
2-
31
#include <algorithm>
42
#include <atcoder/lazysegtree>
53
#include <string>
64
#include <vector>
75

6+
#include <gtest/gtest.h>
7+
88
using namespace atcoder;
99
struct starry {
1010
static int op_ss(int a, int b) { return std::max(a, b); }

test/unittest/math_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include <gtest/gtest.h>
2-
31
#include <atcoder/math>
42
#include <numeric>
53

4+
#include <gtest/gtest.h>
5+
66
using namespace atcoder;
77
using uint = unsigned int;
88
using ll = long long;

test/unittest/matrix_test.cpp

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)