aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-03 18:13:15 +0000
committerChris Lattner <sabre@nondot.org>2007-05-03 18:13:15 +0000
commit7cf67dfb6a70911c0d1043a608329a9f660b4512 (patch)
treea5858c1ae370ae4b5ca8673d4ea37114cacd708c
parenta6bb4a9e93522f5e90604da9c39deea7d997e9f7 (diff)
remove extraneous top-level semi's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36678 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/System/TimeValue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/System/TimeValue.h b/include/llvm/System/TimeValue.h
index 2e7e323861..93610b80e5 100644
--- a/include/llvm/System/TimeValue.h
+++ b/include/llvm/System/TimeValue.h
@@ -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 ) {