Skip to content

Commit 251fc1a

Browse files
committed
bitvec should not have <> unless we are using containers::bitvec
1 parent ffa8f4d commit 251fc1a

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

include/fast_io_dsal/bitvec.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,11 @@
3838
namespace fast_io
3939
{
4040

41-
template <typename Alloc = ::fast_io::native_global_allocator>
42-
using bitvec = ::fast_io::containers::bitvec<Alloc>;
41+
using bitvec = ::fast_io::containers::bitvec<::fast_io::native_global_allocator>;
4342

4443
namespace tlc
4544
{
46-
template <typename Alloc = ::fast_io::native_thread_local_allocator>
47-
using bitvec = ::fast_io::containers::bitvec<Alloc>;
45+
using bitvec = ::fast_io::containers::bitvec<::fast_io::native_thread_local_allocator>;
4846
} // namespace tlc
4947

5048
} // namespace fast_io

0 commit comments

Comments
 (0)