Wrap to 80 cols.

llvm-svn: 16512
This commit is contained in:
Reid Spencer 2004-09-25 05:03:22 +00:00
parent ca141a5b28
commit 8b2f9a298d
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ void TimeValue::now() {
ThrowErrno("Couldn't obtain time of day");
this->set( static_cast<TimeValue::SecondsType>( the_time.tv_sec ),
static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec * NANOSECONDS_PER_MICROSECOND ) );
static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
NANOSECONDS_PER_MICROSECOND ) );
}
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab