| 83 | namespace |
| 84 | { |
| 85 | inline int64_t convertStrToLL( const std::string &inStr ) |
| 86 | { |
| 87 | #if defined( _MSC_VER ) |
| 88 | return _atoi64( inStr.c_str() ); |
| 89 | #elif defined( __GNUC__ ) |
| 90 | return strtoll( inStr.c_str(), nullptr, 10 ); |
| 91 | #else |
| 92 | #error "Need to define string to long long conversion for this compiler" |
| 93 | #endif |
| 94 | } |
| 95 | |
| 96 | ustring toUString( const XMLCh *const xml_str ) |
| 97 | { |
no outgoing calls
no test coverage detected