mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-29 16:40:39 +08:00
Fix build issue with Intel compiler (issue #9)
This commit is contained in:
Vendored
+5
@@ -3303,7 +3303,12 @@ public:
|
||||
using const_iterator = typename parallel_hash_map::parallel_hash_set::const_iterator;
|
||||
|
||||
parallel_hash_map() {}
|
||||
|
||||
#ifdef __INTEL_COMPILER
|
||||
using Base::parallel_hash_set;
|
||||
#else
|
||||
using parallel_hash_map::parallel_hash_set::parallel_hash_set;
|
||||
#endif
|
||||
|
||||
// The last two template parameters ensure that both arguments are rvalues
|
||||
// (lvalue arguments are handled by the overloads below). This is necessary
|
||||
|
||||
Reference in New Issue
Block a user