summaryrefslogtreecommitdiff
path: root/include/llvm/Support/TimeValue.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-01-02 19:42:53 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2013-01-02 19:42:53 +0000
commit8da72f82be858234e81e8a95bd202ab2f2bf891b (patch)
tree8de61b522123356137797b67517375d6d677af32 /include/llvm/Support/TimeValue.h
parentcbf5373603991b7196f096ddf2b5962ed7708b7e (diff)
downloadllvm-8da72f82be858234e81e8a95bd202ab2f2bf891b.tar.gz
llvm-8da72f82be858234e81e8a95bd202ab2f2bf891b.tar.bz2
llvm-8da72f82be858234e81e8a95bd202ab2f2bf891b.tar.xz
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
Diffstat (limited to 'include/llvm/Support/TimeValue.h')
-rw-r--r--include/llvm/Support/TimeValue.h6
1 files changed, 3 insertions, 3 deletions
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 <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