diff options
-rw-r--r-- | include/llvm/ADT/hash_map.in | 2 | ||||
-rw-r--r-- | include/llvm/ADT/hash_set.in | 2 | ||||
-rw-r--r-- | include/llvm/ADT/ilist | 2 | ||||
-rw-r--r-- | include/llvm/Support/DataTypes.h.in | 2 | ||||
-rw-r--r-- | 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 c21711bf23..15cded2f8c 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 aae9615ccf..1c7677d6ad 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 8c447c92e9..0d5e75de75 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 ca02a01571..a81fe51d4d 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 ed3b766f85..0ca83aa2e8 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 |