diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:06:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-14 22:06:18 +0000 |
commit | 05be57b51879fa9237144d07d62f96444e188b63 (patch) | |
tree | 4cf787c131c9a1b38b74a84109eb4dd4f89f48a5 | |
parent | 0d0d07e0f0d74ff27b72ebe276efe9d1bc26f8e3 (diff) | |
download | bcm5719-llvm-05be57b51879fa9237144d07d62f96444e188b63.tar.gz bcm5719-llvm-05be57b51879fa9237144d07d62f96444e188b63.zip |
Don't exceed 80 columns.
llvm-svn: 17777
-rw-r--r-- | llvm/lib/System/TimeValue.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/System/TimeValue.cpp b/llvm/lib/System/TimeValue.cpp index 68778a5e44d..15337244c56 100644 --- a/llvm/lib/System/TimeValue.cpp +++ b/llvm/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 ) { |