| 122 | } |
| 123 | |
| 124 | void ValueTraits<const double>::normalNumber( double t ) |
| 125 | { |
| 126 | char *s = doNegative( t ); |
| 127 | s = doubleToString( t, s ); |
| 128 | s = copyString( s, "." ); |
| 129 | for ( unsigned i = 0; i < DIGITS_ON_RIGHT; ++ i ) |
| 130 | s = numberToString( (unsigned)(t *= BASE) % BASE, s ); |
| 131 | } |
| 132 | |
| 133 | char *ValueTraits<const double>::doubleToString( double t, char *s, unsigned skip, unsigned max ) |
| 134 | { |
nothing calls this directly
no test coverage detected