From 0c1b7199457cf1aef11f522eb5bf2755bfee6ce9 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 1 May 2024 20:52:36 +0200 Subject: [PATCH] added missing typedefs --- test/unordered/stats_tests.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unordered/stats_tests.cpp b/test/unordered/stats_tests.cpp index e1041cd2..9c7ee544 100644 --- a/test/unordered/stats_tests.cpp +++ b/test/unordered/stats_tests.cpp @@ -117,9 +117,9 @@ void check_container_stats(const Stats& s1, const Stats& s2) template void test_stats() { - using value_type = Container::value_type; - using allocator_type = Container::allocator_type; - using stats = Container::stats; + using value_type = typename Container::value_type; + using allocator_type = typename Container::allocator_type; + using stats = typename Container::stats; const bool full = true, empty = false; Container c;