Open ahayzen-kdab opened 2 years ago
Go through C++ code and ensure we use std::int32_t or similar instead of int or qint32 etc
std::int32_t
int
qint32
Note that using std::int32_t confused QML in Qt 5 but not Qt 6 .. https://github.com/ahayzen-kdab/cxx-qt/tree/use-std-integer-types
Note with #317 we can potentially move to std integer types throughout.
Go through C++ code and ensure we use
std::int32_t
or similar instead ofint
orqint32
etc