Skip to content

Commit a883a8a

Browse files
authored
Merge pull request #72 from atcoder/patch/include
fix #71: change system includes into local includes
2 parents 7ac1708 + 22e502f commit a883a8a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+118
-84
lines changed

atcoder/all

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#include <atcoder/convolution>
2-
#include <atcoder/dsu>
3-
#include <atcoder/fenwicktree>
4-
#include <atcoder/lazysegtree>
5-
#include <atcoder/math>
6-
#include <atcoder/maxflow>
7-
#include <atcoder/mincostflow>
8-
#include <atcoder/modint>
9-
#include <atcoder/scc>
10-
#include <atcoder/segtree>
11-
#include <atcoder/string>
12-
#include <atcoder/twosat>
1+
#include "atcoder/convolution"
2+
#include "atcoder/dsu"
3+
#include "atcoder/fenwicktree"
4+
#include "atcoder/lazysegtree"
5+
#include "atcoder/math"
6+
#include "atcoder/maxflow"
7+
#include "atcoder/mincostflow"
8+
#include "atcoder/modint"
9+
#include "atcoder/scc"
10+
#include "atcoder/segtree"
11+
#include "atcoder/string"
12+
#include "atcoder/twosat"

atcoder/convolution

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/convolution.hpp>
1+
#include "atcoder/convolution.hpp"

atcoder/convolution.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33

44
#include <algorithm>
55
#include <array>
6-
#include <atcoder/internal_bit>
7-
#include <atcoder/modint>
86
#include <cassert>
97
#include <type_traits>
108
#include <vector>
119

10+
#include "atcoder/internal_bit"
11+
#include "atcoder/modint"
12+
1213
namespace atcoder {
1314

1415
namespace internal {

atcoder/dsu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/dsu.hpp>
1+
#include "atcoder/dsu.hpp"

atcoder/fenwicktree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/fenwicktree.hpp>
1+
#include "atcoder/fenwicktree.hpp"

atcoder/fenwicktree.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#ifndef ATCODER_FENWICKTREE_HPP
22
#define ATCODER_FENWICKTREE_HPP 1
33

4-
#include <atcoder/internal_type_traits>
54
#include <cassert>
65
#include <vector>
76

7+
#include "atcoder/internal_type_traits"
8+
89
namespace atcoder {
910

1011
// Reference: https://en.wikipedia.org/wiki/Fenwick_tree

atcoder/internal_bit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/internal_bit.hpp>
1+
#include "atcoder/internal_bit.hpp"

atcoder/internal_math

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/internal_math.hpp>
1+
#include "atcoder/internal_math.hpp"

atcoder/internal_queue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/internal_queue.hpp>
1+
#include "atcoder/internal_queue.hpp"

atcoder/internal_scc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#include <atcoder/internal_scc.hpp>
1+
#include "atcoder/internal_scc.hpp"

0 commit comments

Comments
 (0)