Fix #include flavor

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-10-04 18:10:18 +00:00
parent 5cb99fbd67
commit c441f1e1c7
5 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -38,7 +38,7 @@
#ifndef LLVM_ADT_ILIST
#define LLVM_ADT_ILIST
#include <llvm/ADT/iterator>
#include "llvm/ADT/iterator"
#include <cassert>
namespace llvm {

View File

@ -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

View File

@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include <llvm/Support/DataTypes.h>
#include "llvm/Support/DataTypes.h"
#ifndef LLVM_SYSTEM_TIMEVALUE_H
#define LLVM_SYSTEM_TIMEVALUE_H