Don't #include stuff outside the include guards.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 2 Jan 2013 19:42:53 +0000 (19:42 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 2 Jan 2013 19:42:53 +0000 (19:42 +0000)
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

index e780b50c60396e335b0cf455432119caffd2fa81..161214cbd32551acb107146147995de99f06ea03 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#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