summaryrefslogtreecommitdiffstats
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
commit2b8a4a624bfa68bc41d8584a5ca9875f760d1f4c (patch)
tree92f8f9b9ddf659e58c73015af01b0b167bf5f097
parente33d087d1d47a2e62fe8d3c10d71953f7bdeab43 (diff)
downloadbcm5719-llvm-2b8a4a624bfa68bc41d8584a5ca9875f760d1f4c.tar.gz
bcm5719-llvm-2b8a4a624bfa68bc41d8584a5ca9875f760d1f4c.zip
remove extraneous top-level semi's
llvm-svn: 36678
-rw-r--r--llvm/include/llvm/System/TimeValue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/System/TimeValue.h b/llvm/include/llvm/System/TimeValue.h
index 2e7e3238618..93610b80e54 100644
--- a/llvm/include/llvm/System/TimeValue.h
+++ b/llvm/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 ) {
OpenPOWER on IntegriCloud