forked from OSchip/llvm-project
Don't #include stuff outside the include guards.
This defeats the include-guard optimization when parsing. llvm-svn: 171405
This commit is contained in:
parent
c32b022ef0
commit
0b46809d1e
|
@ -11,12 +11,12 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <string>
|
||||
|
||||
#ifndef LLVM_SYSTEM_TIMEVALUE_H
|
||||
#define LLVM_SYSTEM_TIMEVALUE_H
|
||||
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
namespace sys {
|
||||
/// This class is used where a precise fixed point in time is required. The
|
||||
|
|
Loading…
Reference in New Issue