aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-28 02:11:53 +0000
committerChris Lattner <sabre@nondot.org>2002-10-28 02:11:53 +0000
commit4a63b72df95b5c0d4af064cef19377f811ba6060 (patch)
tree2b0068936bf1965293637e60f864f055753f3da6 /include/llvm/ADT
parent8e7ae9860bd1f29c95e4e10fe151a22aaafafef9 (diff)
downloadexternal_llvm-4a63b72df95b5c0d4af064cef19377f811ba6060.zip
external_llvm-4a63b72df95b5c0d4af064cef19377f811ba6060.tar.gz
external_llvm-4a63b72df95b5c0d4af064cef19377f811ba6060.tar.bz2
Don't #include <Support/*>, #include "Support/*"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/DepthFirstIterator.h2
-rw-r--r--include/llvm/ADT/HashExtras.h2
-rw-r--r--include/llvm/ADT/PostOrderIterator.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ADT/DepthFirstIterator.h b/include/llvm/ADT/DepthFirstIterator.h
index e0782ac..7ae4b9d 100644
--- a/include/llvm/ADT/DepthFirstIterator.h
+++ b/include/llvm/ADT/DepthFirstIterator.h
@@ -9,7 +9,7 @@
#define LLVM_SUPPORT_DEPTH_FIRST_ITERATOR_H
#include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
#include <stack>
#include <set>
diff --git a/include/llvm/ADT/HashExtras.h b/include/llvm/ADT/HashExtras.h
index 5887a83..68a49ea 100644
--- a/include/llvm/ADT/HashExtras.h
+++ b/include/llvm/ADT/HashExtras.h
@@ -11,7 +11,7 @@
#define LLVM_SUPPORT_HASHEXTRAS_H
#include <string>
-#include <Support/hash_map>
+#include "Support/hash_map"
// Cannot specialize hash template from outside of the std namespace.
namespace HASH_NAMESPACE {
diff --git a/include/llvm/ADT/PostOrderIterator.h b/include/llvm/ADT/PostOrderIterator.h
index a9f13da..507f4c2 100644
--- a/include/llvm/ADT/PostOrderIterator.h
+++ b/include/llvm/ADT/PostOrderIterator.h
@@ -10,7 +10,7 @@
#define LLVM_SUPPORT_POSTORDER_ITERATOR_H
#include "Support/GraphTraits.h"
-#include <Support/iterator>
+#include "Support/iterator"
#include <stack>
#include <set>