We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062ea77 commit 8c1cd37Copy full SHA for 8c1cd37
README.md
@@ -69,7 +69,7 @@ int main()
69
// list_node_size<int>::value is the size of each node of a std::list
70
memory::memory_pool<> pool(memory::list_node_size<int>::value, 4_KiB);
71
72
- // just an alias for std::list<int, memory::std_allocator<int, memory::memory_pool<>>
+ // just an alias for std::list<int, memory::std_allocator<int, memory::memory_pool<>>>
73
// a std::list using a memory_pool
74
// std_allocator stores a reference to a RawAllocator and provides the Allocator interface
75
memory::list<int, memory::memory_pool<>> list(pool);
0 commit comments