diff options
Diffstat (limited to 'include/Support/hash_map')
-rw-r--r-- | include/Support/hash_map | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/hash_map b/include/Support/hash_map index ce4c42f..72d8bf3 100644 --- a/include/Support/hash_map +++ b/include/Support/hash_map @@ -42,6 +42,10 @@ using HASH_NAMESPACE::hash_map; using HASH_NAMESPACE::hash_multimap; using HASH_NAMESPACE::hash; +/* Include vector because ext/hash_map includes stl_vector.h and leaves + out specializations like stl_bvector.h, causing link conflicts. */ +#include <vector> + #include <Support/HashExtras.h> #endif |