From d516003350bf39e8d478bf2c51e5f43b0a2e2806 Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 12 May 2019 19:04:16 -0400 Subject: [PATCH] Fix build issue with Intel compiler (issue #9) --- parallel_hashmap/phmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel_hashmap/phmap.h b/parallel_hashmap/phmap.h index 7d91aa6..7079b07 100644 --- a/parallel_hashmap/phmap.h +++ b/parallel_hashmap/phmap.h @@ -3303,7 +3303,7 @@ public: using const_iterator = typename parallel_hash_map::parallel_hash_set::const_iterator; parallel_hash_map() {} - using parallel_hash_map::parallel_hash_set::parallel_hash_set; + using Base::parallel_hash_set; // The last two template parameters ensure that both arguments are rvalues // (lvalue arguments are handled by the overloads below). This is necessary