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