itk-wasm
itk-wasm copied to clipboard
Investigate changing std::atol to std::strtoull
xref #512
Typo: std::strtoull! https://www.cplusplus.com/reference/cstdlib/strtoull/
Another option could be istringstream, of course:
std::string pointsString;
size_t address;
// Assuming that the address is specified by this specific substring.
std::istringstream(pointsString.substr(35)) >> address;
Of course, it might be worth for this project to add an internal helper function that retrieves a pointer value from a string, as it occurs on various places.
:tada: This issue has been resolved in version 1.0.0-b.52 :tada:
The release is available on:
- npm package (@beta dist-tag)
- npm package (@beta dist-tag)
- npm package (@beta dist-tag)
- GitHub release
Your semantic-release bot :package::rocket: