From c441f1e1c74853721b2f513c3597c391bd11ccc2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 4 Oct 2004 18:10:18 +0000 Subject: [PATCH] Fix #include flavor git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16658 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/hash_map.in | 2 +- include/llvm/ADT/hash_set.in | 2 +- include/llvm/ADT/ilist | 2 +- include/llvm/Support/DataTypes.h.in | 2 +- include/llvm/System/TimeValue.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/llvm/ADT/hash_map.in b/include/llvm/ADT/hash_map.in index c21711bf233..15cded2f8c8 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 -#include +#include "llvm/ADT/HashExtras.h" #endif diff --git a/include/llvm/ADT/hash_set.in b/include/llvm/ADT/hash_set.in index aae9615ccf6..1c7677d6ade 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 -#include +#include "llvm/ADT/HashExtras.h" #endif diff --git a/include/llvm/ADT/ilist b/include/llvm/ADT/ilist index 8c447c92e9b..0d5e75de75c 100644 --- a/include/llvm/ADT/ilist +++ b/include/llvm/ADT/ilist @@ -38,7 +38,7 @@ #ifndef LLVM_ADT_ILIST #define LLVM_ADT_ILIST -#include +#include "llvm/ADT/iterator" #include namespace llvm { diff --git a/include/llvm/Support/DataTypes.h.in b/include/llvm/Support/DataTypes.h.in index ca02a01571c..a81fe51d4de 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 +#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 ed3b766f85a..0ca83aa2e88 100644 --- a/include/llvm/System/TimeValue.h +++ b/include/llvm/System/TimeValue.h @@ -11,7 +11,7 @@ // //===----------------------------------------------------------------------===// -#include +#include "llvm/Support/DataTypes.h" #ifndef LLVM_SYSTEM_TIMEVALUE_H #define LLVM_SYSTEM_TIMEVALUE_H