mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 11:27:15 +02:00
Add const qualification to auto-generated allocator methods in test suite
This commit is contained in:
@ -65,9 +65,9 @@
|
|||||||
{ \
|
{ \
|
||||||
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