[llvm-commits] CVS: llvm/include/llvm/System/TimeValue.h
Misha Brukman
brukman at cs.uiuc.edu
Mon Oct 18 17:29:26 PDT 2004
Changes in directory llvm/include/llvm/System:
TimeValue.h updated: 1.4 -> 1.5
---
Log message:
* Fit constructor initializer on a single line
* Delete blank chars at end of line to fit into 80 cols
---
Diffs of the changes: (+2 -3)
Index: llvm/include/llvm/System/TimeValue.h
diff -u llvm/include/llvm/System/TimeValue.h:1.4 llvm/include/llvm/System/TimeValue.h:1.5
--- llvm/include/llvm/System/TimeValue.h:1.4 Tue Oct 12 16:48:02 2004
+++ llvm/include/llvm/System/TimeValue.h Mon Oct 18 19:29:16 2004
@@ -85,8 +85,7 @@
/// \p nanos argument defaults to zero for convenience.
/// @brief Explicit constructor
explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
- : seconds_( seconds )
- , nanos_( nanos ) { this->normalize(); }
+ : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
/// Caller provides the exact value as a double in seconds with the
/// fractional part representing nanoseconds.
@@ -209,7 +208,7 @@
return nanos_ / NANOSECONDS_PER_MICROSECOND;
}
- /// Returns only the fractional portion of the TimeValue rounded down to the
+ /// Returns only the fractional portion of the TimeValue rounded down to the
/// nearest millisecond (divide by one million).
/// @brief Retrieve the fractional part as milliseconds;
uint32_t milliseconds( void ) const {
More information about the llvm-commits
mailing list