MCPcopy Create free account
hub / github.com/PDAL/PDAL / convertStrToLL

Function convertStrToLL

plugins/e57/libE57Format/src/E57XmlParser.cpp:85–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83namespace
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 {

Callers 2

startElementMethod · 0.85
endElementMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected