Skip to content

Commit 2936e03

Browse files
committed
move inside
1 parent 20ed408 commit 2936e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/data_structures_[l,r)/seg_tree_uncommon/wavelet_bit_vec.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//! @endcode
77
//! @time O(n + q)
88
//! @space O(n / 64)
9-
using ull = uint64_t;
109
struct bit_vec {
10+
using ull = uint64_t;
1111
vector<pair<ull, int>> b;
1212
bit_vec(const vector<bool>& a): b(sz(a) / 64 + 1) {
1313
rep(i, 0, sz(a)) {

0 commit comments

Comments
 (0)