From 669df123648aaa6aeccc70206b5417bc48b4e9ae Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:26:50 +0200 Subject: 5.19 --- zen/stl_tools.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'zen/stl_tools.h') diff --git a/zen/stl_tools.h b/zen/stl_tools.h index c93f2d61..bf47bb1c 100644 --- a/zen/stl_tools.h +++ b/zen/stl_tools.h @@ -183,6 +183,9 @@ template class hash_map : public std::map {}; #else template class hash_set : public std::unordered_set {}; template class hash_map : public std::unordered_map {}; +//C++11: +//template using hash_set = std::unordered_set; +//template using hash_map = std::unordered_map; #endif //as long as variadic templates are not available in MSVC -- cgit