From 8da72f82be858234e81e8a95bd202ab2f2bf891b Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Wed, 2 Jan 2013 19:42:53 +0000 Subject: Don't #include stuff outside the include guards. This defeats the include-guard optimization when parsing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171405 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/TimeValue.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/llvm/Support/TimeValue.h') diff --git a/include/llvm/Support/TimeValue.h b/include/llvm/Support/TimeValue.h index e780b50c60..161214cbd3 100644 --- a/include/llvm/Support/TimeValue.h +++ b/include/llvm/Support/TimeValue.h @@ -11,12 +11,12 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Support/DataTypes.h" -#include - #ifndef LLVM_SYSTEM_TIMEVALUE_H #define LLVM_SYSTEM_TIMEVALUE_H +#include "llvm/Support/DataTypes.h" +#include + namespace llvm { namespace sys { /// This class is used where a precise fixed point in time is required. The -- cgit v1.2.3