summaryrefslogtreecommitdiff
path: root/stlport/systemstl/hash_set
diff options
context:
space:
mode:
Diffstat (limited to 'stlport/systemstl/hash_set')
-rw-r--r--stlport/systemstl/hash_set9
1 files changed, 9 insertions, 0 deletions
diff --git a/stlport/systemstl/hash_set b/stlport/systemstl/hash_set
index f7b0ffc3c013..9704396da066 100644
--- a/stlport/systemstl/hash_set
+++ b/stlport/systemstl/hash_set
@@ -46,8 +46,17 @@ namespace std
using __gnu_cxx::hash_multiset;
}
#else
+#ifdef _MSC_VER
+#define USE_MSVC_HASH_SET
+#include <../include/hash_set>
+namespace std
+{
+ using namespace stdext;
+}
+#else
# error UNSUPPORTED COMPILER
#endif
+#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */