| 56 | // each type. |
| 57 | template<class T> |
| 58 | std::string PrintValue(const T& value) { |
| 59 | return to_string(value); |
| 60 | } |
| 61 | |
| 62 | // Print functions have two signatures. One writes output to a stringstream passed in |
| 63 | // as an argument. The second returns a string. In all cases, the second signature is |
no outgoing calls