mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-31 03:47:16 +02:00
Add const qualification to auto-generated allocator methods in test suite
This commit is contained in:
@ -65,8 +65,8 @@
|
|||||||
{ \
|
{ \
|
||||||
return (std::numeric_limits<size_type>::max)(); \
|
return (std::numeric_limits<size_type>::max)(); \
|
||||||
} \
|
} \
|
||||||
bool operator==(name<T> const&) { return true; } \
|
bool operator==(name<T> const&) const { return true; } \
|
||||||
bool operator!=(name<T> const&) { return false; } \
|
bool operator!=(name<T> const&) const { return false; } \
|
||||||
/**/
|
/**/
|
||||||
|
|
||||||
struct yes_type
|
struct yes_type
|
||||||
|
Reference in New Issue
Block a user