Kingcom / armips

An assembler for various ARM and MIPS platforms. Builds available at http://buildbot.orphis.net/armips/
MIT License
359 stars 77 forks source link

Util: include <cstdint> #237

Closed nekopsykose closed 1 year ago

nekopsykose commented 1 year ago

required for intXX_t types:

Util/Util.h:9:69: error: 'int64_t' has not been declared 9 | bool stringToInt(const std::string& line, size_t start, size_t end, int64_t& result);

fixes the build with gcc13 that doesn't include this by default

Kingcom commented 1 year ago

Thanks!