summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-14 22:06:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-14 22:06:18 +0000
commit44cbf36c38b41028b7d25ca3032f14597897f4c9 (patch)
tree0b8e2e12bce54d5947f89f6760dc608c8d88b721
parentf37ce99c0af5921bb0cc132350ffdf8b73cf30a7 (diff)
downloadllvm-44cbf36c38b41028b7d25ca3032f14597897f4c9.tar.gz
llvm-44cbf36c38b41028b7d25ca3032f14597897f4c9.tar.bz2
llvm-44cbf36c38b41028b7d25ca3032f14597897f4c9.tar.xz
Don't exceed 80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17777 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/System/TimeValue.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/System/TimeValue.cpp b/lib/System/TimeValue.cpp
index 68778a5e44..15337244c5 100644
--- a/lib/System/TimeValue.cpp
+++ b/lib/System/TimeValue.cpp
@@ -16,11 +16,11 @@
namespace llvm {
using namespace sys;
-const TimeValue TimeValue::MinTime = TimeValue ( INT64_MIN,0 );
-const TimeValue TimeValue::MaxTime = TimeValue ( INT64_MAX,0 );
-const TimeValue TimeValue::ZeroTime = TimeValue ( 0,0 );
-const TimeValue TimeValue::PosixZeroTime = TimeValue ( -946684800,0 );
-const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 );
+const TimeValue TimeValue::MinTime = TimeValue ( INT64_MIN,0 );
+const TimeValue TimeValue::MaxTime = TimeValue ( INT64_MAX,0 );
+const TimeValue TimeValue::ZeroTime = TimeValue ( 0,0 );
+const TimeValue TimeValue::PosixZeroTime = TimeValue ( -946684800,0 );
+const TimeValue TimeValue::Win32ZeroTime = TimeValue ( -12591158400ULL,0 );
void
TimeValue::normalize( void ) {