aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-15 06:39:18 +0000
committerChris Lattner <sabre@nondot.org>2003-12-15 06:39:18 +0000
commitcfde00b3d7f727fea8b083339884b75ccdc96483 (patch)
tree8b5aa13a27bac1587af01b3b7474c45563239c01 /include
parentf6f91bf6680668990ff3804b14cf05beedc56ec4 (diff)
downloadexternal_llvm-cfde00b3d7f727fea8b083339884b75ccdc96483.zip
external_llvm-cfde00b3d7f727fea8b083339884b75ccdc96483.tar.gz
external_llvm-cfde00b3d7f727fea8b083339884b75ccdc96483.tar.bz2
This header is dead
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/Support/slist44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/Support/slist b/include/Support/slist
deleted file mode 100644
index 9e5c3ea..0000000
--- a/include/Support/slist
+++ /dev/null
@@ -1,44 +0,0 @@
-//===-- Support/slist - "Portable" wrapper around slist ---------*- C++ -*-===//
-//
-// 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.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file provides a wrapper around the mysterious <slist> header file that
-// seems to move around between GCC releases into and out of namespaces at will.
-// #including this header will cause hash_map to be available in the global
-// namespace.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef SUPPORT_SLIST
-#define SUPPORT_SLIST
-
-#include "Config/config.h"
-
-// Compiler Support Matrix
-//
-// Version Namespace Header File
-// 2.95.x :: slist
-// 3.0.4 std ext/slist
-// 3.1 __gnu_cxx ext/slist
-//
-
-#ifdef HAVE_EXT_SLIST
-#include <ext/slist>
-#else
-#include <slist>
-#endif
-
-#if HAVE_EXT_SLIST == std
-using std::slist;
-#endif
-
-#if HAVE_EXT_SLIST == gnu
-using __gnu_cxx::slist;
-#endif
-
-#endif