summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-10-19 00:29:16 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-10-19 00:29:16 +0000
commitfc62cd1a85aa7ca58f37c932ce8e6cb3ea3815f2 (patch)
tree9937d5d569f261b71f44deec7802bf48bd4bc36e
parent6a11a75f319ee93e83ff4f15220dc73ec8104499 (diff)
downloadbcm5719-llvm-fc62cd1a85aa7ca58f37c932ce8e6cb3ea3815f2.tar.gz
bcm5719-llvm-fc62cd1a85aa7ca58f37c932ce8e6cb3ea3815f2.zip
* Fit constructor initializer on a single line
* Delete blank chars at end of line to fit into 80 cols llvm-svn: 17137
-rw-r--r--llvm/include/llvm/System/TimeValue.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/include/llvm/System/TimeValue.h b/llvm/include/llvm/System/TimeValue.h
index 1152975b2c9..19214aa22ad 100644
--- a/llvm/include/llvm/System/TimeValue.h
+++ b/llvm/include/llvm/System/TimeValue.h
@@ -85,8 +85,7 @@ namespace sys {
/// \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 @@ namespace sys {
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 {
OpenPOWER on IntegriCloud