Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 9649814

Browse files
authored
Fix Boost-free compilation. (#703)
This was a silly bug in #702.
1 parent a8bb716 commit 9649814

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coreneuron/utils/randoms/nrnran123.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ std::unordered_map<void*, std::size_t> random123_allocate_unified::m_block_sizes
6969
using random123_allocator =
7070
boost::fast_pool_allocator<coreneuron::nrnran123_State, random123_allocate_unified>;
7171
#else
72-
using random123_allocator = coreneuron::unified_allocator<nrnran123_State>;
72+
using random123_allocator = coreneuron::unified_allocator<coreneuron::nrnran123_State>;
7373
#endif
7474
/* Global data structure per process. Using a unique_ptr here causes [minor]
7575
* problems because its destructor can be called very late during application

0 commit comments

Comments
 (0)