aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/TimeValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/TimeValue.cpp')
-rw-r--r--lib/Support/TimeValue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/TimeValue.cpp b/lib/Support/TimeValue.cpp
index 136b93eceefa..94a4c011693c 100644
--- a/lib/Support/TimeValue.cpp
+++ b/lib/Support/TimeValue.cpp
@@ -15,6 +15,7 @@
#include "llvm/Config/config.h"
namespace llvm {
+
using namespace sys;
const TimeValue::SecondsType
@@ -22,8 +23,7 @@ const TimeValue::SecondsType
const TimeValue::SecondsType
TimeValue::Win32ZeroTimeSeconds = -12591158400ULL;
-void
-TimeValue::normalize( void ) {
+void TimeValue::normalize() {
if ( nanos_ >= NANOSECONDS_PER_SECOND ) {
do {
seconds_++;
@@ -45,7 +45,7 @@ TimeValue::normalize( void ) {
}
}
-}
+} // namespace llvm
/// Include the platform-specific portion of TimeValue class
#ifdef LLVM_ON_UNIX