* Fit constructor initializer on a single line

* Delete blank chars at end of line to fit into 80 cols

llvm-svn: 17137
This commit is contained in:
Misha Brukman 2004-10-19 00:29:16 +00:00
parent 6a11a75f31
commit fc62cd1a85
1 changed files with 2 additions and 3 deletions

View 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.