| 402 | } |
| 403 | |
| 404 | virtual std::string GetValueAsString() const override |
| 405 | { |
| 406 | char buff[16] = { 0 }; |
| 407 | if (auto [p, ec] = std::to_chars(buff, buff+16, m_Data); ec == std::errc()) |
| 408 | return std::string(buff); |
| 409 | return std::string(); |
| 410 | } |
| 411 | |
| 412 | // default accessors |
| 413 |
nothing calls this directly
no outgoing calls
no test coverage detected