| 324 | } |
| 325 | |
| 326 | int getint() const |
| 327 | { |
| 328 | if (m_value > std::numeric_limits<int>::max()) |
| 329 | return std::numeric_limits<int>::max(); |
| 330 | else if (m_value < std::numeric_limits<int>::min()) |
| 331 | return std::numeric_limits<int>::min(); |
| 332 | return m_value; |
| 333 | } |
| 334 | |
| 335 | int64_t GetInt64() const { return m_value; } |
| 336 |
no outgoing calls
no test coverage detected