Skip to content

Commit 5e31745

Browse files
committed
fix
1 parent 3eb1764 commit 5e31745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/data_structures/seg_tree_uncommon/wavelet_bit_vec.hpp

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

0 commit comments

Comments
 (0)