| 60 | |
| 61 | private: |
| 62 | bool ToInt(uint64_t & n) const |
| 63 | { |
| 64 | // If string is a number and we have space for control bit |
| 65 | return (strings::to_uint64(m_s, n) && ((n << 1) >> 1) == n); |
| 66 | } |
| 67 | |
| 68 | std::string m_s; |
| 69 | }; |
nothing calls this directly
no test coverage detected