2002-07-24 21:25:34 +00:00
|
|
|
//===-- Support/hash_set - "Portable" wrapper around hash_set ---*- C++ -*-===//
|
2003-10-20 19:46:57 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-15 20:01:10 +00:00
|
|
|
// vim:ft=cpp
|
2002-07-24 21:25:34 +00:00
|
|
|
//
|
|
|
|
// This file provides a wrapper around the mysterious <hash_set> header file
|
|
|
|
// that seems to move around between GCC releases into and out of namespaces at
|
|
|
|
// will. #including this header will cause hash_set to be available in the
|
|
|
|
// global namespace.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-06-17 00:35:55 +00:00
|
|
|
#ifndef SUPPORT_HASH_SET
|
|
|
|
#define SUPPORT_HASH_SET
|
2002-07-25 15:00:43 +00:00
|
|
|
|
2002-07-25 15:23:20 +00:00
|
|
|
// Compiler Support Matrix
|
|
|
|
//
|
|
|
|
// Version Namespace Header File
|
|
|
|
// 2.95.x :: hash_set
|
|
|
|
// 3.0.4 std ext/hash_set
|
|
|
|
// 3.1 __gnu_cxx ext/hash_set
|
|
|
|
//
|
|
|
|
|
2003-11-10 03:06:09 +00:00
|
|
|
// GCC versions 3.1 and later put hash_set in <ext/hash_set> and in
|
|
|
|
// the __gnu_cxx namespace.
|
2004-02-23 18:56:36 +00:00
|
|
|
#if @HAVE_GNU_EXT_HASH_SET@
|
2003-11-10 03:06:09 +00:00
|
|
|
# include <ext/hash_set>
|
|
|
|
# ifndef HASH_NAMESPACE
|
|
|
|
# define HASH_NAMESPACE __gnu_cxx
|
|
|
|
# endif
|
2003-06-30 21:59:07 +00:00
|
|
|
|
2003-11-10 03:06:09 +00:00
|
|
|
// GCC 3.0.x puts hash_set in <ext/hash_set> and in the std namespace.
|
2004-02-23 18:56:36 +00:00
|
|
|
#elif @HAVE_STD_EXT_HASH_SET@
|
2003-11-10 03:06:09 +00:00
|
|
|
# include <ext/hash_set>
|
|
|
|
# ifndef HASH_NAMESPACE
|
|
|
|
# define HASH_NAMESPACE std
|
|
|
|
# endif
|
2002-07-25 15:00:43 +00:00
|
|
|
|
2003-11-10 03:06:09 +00:00
|
|
|
// Older compilers such as GCC before version 3.0 do not keep
|
|
|
|
// extensions in the `ext' directory, and ignore the `std' namespace.
|
2004-02-23 18:56:36 +00:00
|
|
|
#elif @HAVE_GLOBAL_HASH_SET@
|
2003-11-10 03:06:09 +00:00
|
|
|
# include <hash_set>
|
|
|
|
# ifndef HASH_NAMESPACE
|
|
|
|
# define HASH_NAMESPACE std
|
|
|
|
# endif
|
2003-06-30 21:59:07 +00:00
|
|
|
|
2003-11-10 03:06:09 +00:00
|
|
|
// Give a warning if we couldn't find it, instead of (or in addition to)
|
|
|
|
// randomly doing something dumb.
|
2003-06-30 21:59:07 +00:00
|
|
|
#else
|
2003-11-10 03:06:09 +00:00
|
|
|
# warning "Autoconfiguration failed to find the hash_set header file."
|
2002-07-25 15:00:43 +00:00
|
|
|
#endif
|
2002-07-24 22:20:00 +00:00
|
|
|
|
|
|
|
using HASH_NAMESPACE::hash_set;
|
|
|
|
using HASH_NAMESPACE::hash;
|
|
|
|
|
2003-07-25 15:08:08 +00:00
|
|
|
// Include vector because ext/hash_set includes stl_vector.h and leaves
|
|
|
|
// out specializations like stl_bvector.h, causing link conflicts.
|
2003-07-25 14:06:13 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2002-11-08 14:07:33 +00:00
|
|
|
#include <Support/HashExtras.h>
|
|
|
|
|
2002-07-24 22:20:00 +00:00
|
|
|
#endif
|