Patch to fix PR102, contributed by Reid Spencer.
[oota-llvm.git] / include / Support / hash_set
1 //===-- Support/hash_set - "Portable" wrapper around hash_set ---*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 // vim:ft=cpp
10 //
11 // This file provides a wrapper around the mysterious <hash_set> header file
12 // that seems to move around between GCC releases into and out of namespaces at
13 // will.  #including this header will cause hash_set to be available in the
14 // global namespace.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef SUPPORT_HASH_SET
19 #define SUPPORT_HASH_SET
20
21 // Compiler Support Matrix
22 //
23 // Version   Namespace   Header File
24 //  2.95.x       ::        hash_set
25 //  3.0.4       std      ext/hash_set
26 //  3.1      __gnu_cxx   ext/hash_set
27 //
28
29 #include "Config/config.h"
30
31 // GCC versions 3.1 and later put hash_set in <ext/hash_set> and in
32 // the __gnu_cxx namespace.
33 #if defined(HAVE_GNU_EXT_HASH_SET)
34 # include <ext/hash_set>
35 # ifndef HASH_NAMESPACE
36 #  define HASH_NAMESPACE __gnu_cxx
37 # endif
38
39 // GCC 3.0.x puts hash_set in <ext/hash_set> and in the std namespace.
40 #elif defined(HAVE_STD_EXT_HASH_SET)
41 # include <ext/hash_set>
42 # ifndef HASH_NAMESPACE
43 #  define HASH_NAMESPACE std
44 # endif
45
46 // Older compilers such as GCC before version 3.0 do not keep
47 // extensions in the `ext' directory, and ignore the `std' namespace.
48 #elif defined(HAVE_GLOBAL_HASH_SET)
49 # include <hash_set>
50 # ifndef HASH_NAMESPACE
51 #  define HASH_NAMESPACE std
52 # endif
53
54 // Give a warning if we couldn't find it, instead of (or in addition to)
55 // randomly doing something dumb.
56 #else
57 # warning "Autoconfiguration failed to find the hash_set header file."
58 #endif
59
60 using HASH_NAMESPACE::hash_set;
61 using HASH_NAMESPACE::hash;
62
63 // Include vector because ext/hash_set includes stl_vector.h and leaves
64 // out specializations like stl_bvector.h, causing link conflicts.
65 #include <vector>
66
67 #include <Support/HashExtras.h>
68
69 #endif