mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 03:17:15 +02:00
added missing typedefs
This commit is contained in:
@ -117,9 +117,9 @@ void check_container_stats(const Stats& s1, const Stats& s2)
|
|||||||
|
|
||||||
template <class Container> void test_stats()
|
template <class Container> void test_stats()
|
||||||
{
|
{
|
||||||
using value_type = Container::value_type;
|
using value_type = typename Container::value_type;
|
||||||
using allocator_type = Container::allocator_type;
|
using allocator_type = typename Container::allocator_type;
|
||||||
using stats = Container::stats;
|
using stats = typename Container::stats;
|
||||||
const bool full = true, empty = false;
|
const bool full = true, empty = false;
|
||||||
|
|
||||||
Container c;
|
Container c;
|
||||||
|
Reference in New Issue
Block a user