aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-04 18:10:18 +0000
committerChris Lattner <sabre@nondot.org>2004-10-04 18:10:18 +0000
commitc441f1e1c74853721b2f513c3597c391bd11ccc2 (patch)
tree94597ea06deb8934962d0bd9aaaabb4d86569412 /include
parent5cb99fbd679d00b4c2d354c4485ce95377aec93a (diff)
downloadexternal_llvm-c441f1e1c74853721b2f513c3597c391bd11ccc2.zip
external_llvm-c441f1e1c74853721b2f513c3597c391bd11ccc2.tar.gz
external_llvm-c441f1e1c74853721b2f513c3597c391bd11ccc2.tar.bz2
Fix #include flavor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16658 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/hash_map.in2
-rw-r--r--include/llvm/ADT/hash_set.in2
-rw-r--r--include/llvm/ADT/ilist2
-rw-r--r--include/llvm/Support/DataTypes.h.in2
-rw-r--r--include/llvm/System/TimeValue.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/ADT/hash_map.in b/include/llvm/ADT/hash_map.in
index c21711b..15cded2 100644
--- a/include/llvm/ADT/hash_map.in
+++ b/include/llvm/ADT/hash_map.in
@@ -65,6 +65,6 @@ using HASH_NAMESPACE::hash;
// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
-#include <llvm/ADT/HashExtras.h>
+#include "llvm/ADT/HashExtras.h"
#endif
diff --git a/include/llvm/ADT/hash_set.in b/include/llvm/ADT/hash_set.in
index aae9615..1c7677d 100644
--- a/include/llvm/ADT/hash_set.in
+++ b/include/llvm/ADT/hash_set.in
@@ -66,6 +66,6 @@ using HASH_NAMESPACE::hash;
// out specializations like stl_bvector.h, causing link conflicts.
#include <vector>
-#include <llvm/ADT/HashExtras.h>
+#include "llvm/ADT/HashExtras.h"
#endif
diff --git a/include/llvm/ADT/ilist b/include/llvm/ADT/ilist
index 8c447c9..0d5e75d 100644
--- a/include/llvm/ADT/ilist
+++ b/include/llvm/ADT/ilist
@@ -38,7 +38,7 @@
#ifndef LLVM_ADT_ILIST
#define LLVM_ADT_ILIST
-#include <llvm/ADT/iterator>
+#include "llvm/ADT/iterator"
#include <cassert>
namespace llvm {
diff --git a/include/llvm/Support/DataTypes.h.in b/include/llvm/Support/DataTypes.h.in
index ca02a01..a81fe51 100644
--- a/include/llvm/Support/DataTypes.h.in
+++ b/include/llvm/Support/DataTypes.h.in
@@ -21,7 +21,7 @@
#ifndef SUPPORT_DATATYPES_H
#define SUPPORT_DATATYPES_H
-#include <llvm/Config/config.h>
+#include "llvm/Config/config.h"
// Note that this header's correct operation depends on __STDC_LIMIT_MACROS
// being defined. We would define it here, but in order to prevent Bad Things
diff --git a/include/llvm/System/TimeValue.h b/include/llvm/System/TimeValue.h
index ed3b766..0ca83aa 100644
--- a/include/llvm/System/TimeValue.h
+++ b/include/llvm/System/TimeValue.h
@@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
-#include <llvm/Support/DataTypes.h>
+#include "llvm/Support/DataTypes.h"
#ifndef LLVM_SYSTEM_TIMEVALUE_H
#define LLVM_SYSTEM_TIMEVALUE_H