[llvm-commits] CVS: llvm/include/llvm/System/TimeValue.h
Chris Lattner
sabre at nondot.org
Thu May 3 11:13:34 PDT 2007
Changes in directory llvm/include/llvm/System:
TimeValue.h updated: 1.16 -> 1.17
---
Log message:
remove extraneous top-level semi's
---
Diffs of the changes: (+2 -2)
TimeValue.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/System/TimeValue.h
diff -u llvm/include/llvm/System/TimeValue.h:1.16 llvm/include/llvm/System/TimeValue.h:1.17
--- llvm/include/llvm/System/TimeValue.h:1.16 Tue Aug 22 12:38:05 2006
+++ llvm/include/llvm/System/TimeValue.h Thu May 3 13:13:15 2007
@@ -303,14 +303,14 @@
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 ) {
More information about the llvm-commits
mailing list