Skip to content

Commit 79623d3

Browse files
committed
fix: Remove unnecessary group.hpp includes from various data structure headers
1 parent 3b4cb20 commit 79623d3

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

test/point_add_range_sum.test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/point_add_range_sum"
22

3+
#include "../weilycoder/ds/group.hpp"
34
#include "../weilycoder/ds/point_add_range_sum.hpp"
45
#include <cstdint>
56
#include <iostream>

test/static_range_sum.test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/static_range_sum"
22

3+
#include "../weilycoder/ds/group.hpp"
34
#include "../weilycoder/ds/static_range_sum.hpp"
45
#include <cstdint>
56
#include <iostream>

test/staticrmq.test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/staticrmq"
22

3+
#include "../weilycoder/ds/group.hpp"
34
#include "../weilycoder/ds/offline_static_range_query.hpp"
45
#include <cstdint>
56
#include <iostream>

weilycoder/ds/offline_static_range_query.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* @brief Offline Static Range Query Data Structure
77
*/
88

9-
#include "group.hpp"
109
#include <cstddef>
1110
#include <numeric>
1211
#include <stdexcept>

weilycoder/ds/point_add_range_sum.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* @brief Point Add Range Sum using Fenwick Tree
77
*/
88

9-
#include "group.hpp"
109
#include <cstddef>
1110
#include <stdexcept>
1211
#include <vector>

weilycoder/ds/static_range_sum.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* @brief Static Range Sum using Prefix Sums
77
*/
88

9-
#include "group.hpp"
109
#include <cstddef>
1110
#include <stdexcept>
1211
#include <vector>

0 commit comments

Comments
 (0)