returns a uint64_t from a string */
| 212 | |
| 213 | /** returns a uint64_t from a string */ |
| 214 | uint64_t StringToUint64( const std::string & sValue ) |
| 215 | { |
| 216 | return strtoull( sValue.c_str(), NULL, 0 ); |
| 217 | } |
| 218 | |
| 219 | //----------------------------------------------------------------------------- |
| 220 | // Purpose: Helper for converting a numeric value to a hex digit, value should be 0-15. |
nothing calls this directly
no test coverage detected