From: Argyrios Kyrtzidis Date: Wed, 2 Jan 2013 19:42:53 +0000 (+0000) Subject: Don't #include stuff outside the include guards. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8da72f82be858234e81e8a95bd202ab2f2bf891b;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/TimeValue.h b/include/llvm/Support/TimeValue.h index e780b50c603..161214cbd32 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