mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 13:21:30 +00:00
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
c985c304e2
commit
d33aff0073
@ -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
Block a user