Skip to content

Commit 1e38582

Browse files
committed
shorten name
1 parent cf06854 commit 1e38582

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

library/data_structures_[l,r)/bit.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
struct BIT {
66
vector<ll> s;
77
BIT(int n): s(n) {}
8-
#include "bit_uncommon/vector_constructor.hpp"
8+
#include "bit_uncommon/init.hpp"
99
void update(int i, ll d) {
1010
for (; i < sz(s); i |= i + 1) s[i] += d;
1111
}

library/data_structures_[l,r)/bit_uncommon/vector_constructor.hpp renamed to library/data_structures_[l,r)/bit_uncommon/init.hpp

File renamed without changes.

library/data_structures_[l,r]/bit.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
struct BIT {
66
vector<ll> s;
77
BIT(int n): s(n) {}
8-
#include "../data_structures_[l,r)/bit_uncommon/vector_constructor.hpp"
8+
#include "../data_structures_[l,r)/bit_uncommon/init.hpp"
99
void update(int i, ll d) {
1010
for (; i < sz(s); i |= i + 1) s[i] += d;
1111
}

0 commit comments

Comments
 (0)