mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 19:37:14 +02:00
Improve naming in are_transparent
This commit is contained in:
@ -53,10 +53,10 @@ namespace boost {
|
|||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class, class A, class B> struct are_transparent
|
template <class, class Hash, class KeyEqual> struct are_transparent
|
||||||
{
|
{
|
||||||
static bool const value =
|
static bool const value =
|
||||||
is_transparent<A>::value && is_transparent<B>::value;
|
is_transparent<Hash>::value && is_transparent<KeyEqual>::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class Key, class UnorderedMap> struct transparent_non_iterable
|
template <class Key, class UnorderedMap> struct transparent_non_iterable
|
||||||
|
Reference in New Issue
Block a user