mattreecebentley / plf_list

A drop-in replacement for std::list with 293% faster insertion, 57% faster erasure, 17% faster iteration and 77% faster sorting on average. 20-24% speed increase in use-case testing.
https://plflib.org/list.htm
zlib License
151 stars 21 forks source link

Typo in PLF_LIST_NOEXCEPT_MOVE_ASSIGNMENT definitions #4

Closed cscrimge closed 6 years ago

cscrimge commented 6 years ago

Some of the PLF_LIST_NOEXCEPT_MOVE_ASSIGNMENT definitions are:

noexcept(std::allocator_traits<the_allocator>::is_always_equal:value)

It should be ::value, not :value.

mattreecebentley commented 6 years ago

Thanks, fixed!