remove extraneous top-level semi's

llvm-svn: 36678
This commit is contained in:
Chris Lattner 2007-05-03 18:13:15 +00:00
parent e33d087d1d
commit 2b8a4a624b
1 changed files with 2 additions and 2 deletions

View File

@ -303,14 +303,14 @@ namespace sys {
void microseconds ( int32_t micros ) {
this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND;
this->normalize();
};
}
/// The seconds component remains unchanged.
/// @brief Set the nanoseconds component using a number of milliseconds.
void milliseconds ( int32_t millis ) {
this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND;
this->normalize();
};
}
/// @brief Converts from microsecond format to TimeValue format
void usec( int64_t microseconds ) {