remove extraneous top-level semi's
authorChris Lattner <sabre@nondot.org>
Thu, 3 May 2007 18:13:15 +0000 (18:13 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 3 May 2007 18:13:15 +0000 (18:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36678 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/TimeValue.h

index 2e7e3238618c9bd934210d182626e1ed09457239..93610b80e5413412a4dae0fb15add69653c4ea14 100644 (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 ) {