Add const qualification to auto-generated allocator methods in test suite

This commit is contained in:
LeonineKing1199
2021-11-18 10:25:44 -08:00
parent dbba786a35
commit 2e1ef850e3

View File

@ -65,9 +65,9 @@
{ \
return (std::numeric_limits<size_type>::max)(); \
} \
bool operator==(name<T> const&) { return true; } \
bool operator!=(name<T> const&) { return false; } \
/**/
bool operator==(name<T> const&) const { return true; } \
bool operator!=(name<T> const&) const { return false; } \
/**/
struct yes_type
{