* Fit constructor initializer on a single line
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 19 Oct 2004 00:29:16 +0000 (00:29 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 19 Oct 2004 00:29:16 +0000 (00:29 +0000)
* Delete blank chars at end of line to fit into 80 cols

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17137 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/TimeValue.h

index 1152975b2c97b4d974207f5fd85e327bdfd08f1a..19214aa22ad7e4052bd2d52e93d2aabb972d1e90 100644 (file)
@@ -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 {