| 419 | } |
| 420 | |
| 421 | std::string to_string() const override |
| 422 | { |
| 423 | std::string result; |
| 424 | if (try_to_string(&result, m_value)) |
| 425 | { |
| 426 | return result; |
| 427 | } |
| 428 | |
| 429 | return "0.0"; |
| 430 | } |
| 431 | |
| 432 | std::string def_to_string() const override |
| 433 | { |
nothing calls this directly
no test coverage detected