mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-25 17:20:48 +00:00
remove extraneous top-level semi's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36678 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -303,14 +303,14 @@ namespace sys {
|
|||||||
void microseconds ( int32_t micros ) {
|
void microseconds ( int32_t micros ) {
|
||||||
this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND;
|
this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND;
|
||||||
this->normalize();
|
this->normalize();
|
||||||
};
|
}
|
||||||
|
|
||||||
/// The seconds component remains unchanged.
|
/// The seconds component remains unchanged.
|
||||||
/// @brief Set the nanoseconds component using a number of milliseconds.
|
/// @brief Set the nanoseconds component using a number of milliseconds.
|
||||||
void milliseconds ( int32_t millis ) {
|
void milliseconds ( int32_t millis ) {
|
||||||
this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND;
|
this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND;
|
||||||
this->normalize();
|
this->normalize();
|
||||||
};
|
}
|
||||||
|
|
||||||
/// @brief Converts from microsecond format to TimeValue format
|
/// @brief Converts from microsecond format to TimeValue format
|
||||||
void usec( int64_t microseconds ) {
|
void usec( int64_t microseconds ) {
|
||||||
|
Reference in New Issue
Block a user