| 73 | } |
| 74 | |
| 75 | void XMLRPCWriter::writeNumber(double value) { |
| 76 | if (round(value) == value && value <= numeric_limits<int>::max() && value >= numeric_limits<int>::min()) |
| 77 | return writeInt((int)value); |
| 78 | String::Append(beginValue("double"), value); |
| 79 | endValue("double"); |
| 80 | } |
| 81 | |
| 82 | |
| 83 | UInt64 XMLRPCWriter::writeDate(const Date& date) { |
nothing calls this directly
no outgoing calls
no test coverage detected