Move hash_* extension headers from ext/ to Support/ so that we can support
[oota-llvm.git] / include / Support / hash_set
1 #if __GNUC__==3
2 #include <ext/hash_set>
3 using __gnu_cxx::hash_set;
4 #else
5 #include <hash_set>
6 #endif