Don't exceed 80 columns.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 14 Nov 2004 22:06:18 +0000 (22:06 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 14 Nov 2004 22:06:18 +0000 (22:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17777 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/TimeValue.cpp

index 68778a5e44d97c2c1725281baea1623010d91f08..15337244c563bb11780e356fdffe8ea751e28c02 100644 (file)
 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 ) {