Your system might define LLONG_MIN and LLONG_MAX in climits (or limits.h). You could define them yourself:
const qint64 llong_max = Q_INT64_C(9223372036854775807);
const qint64 llong_min = Q_INT64_C(-(llong_max) - 1);
// const qint64 llong_min = Q_INT64_C(-9223372036854775808); Generates a warning in my compiler
const qint64 llong_max = Q_INT64_C(9223372036854775807);
const qint64 llong_min = Q_INT64_C(-(llong_max) - 1);
// const qint64 llong_min = Q_INT64_C(-9223372036854775808); Generates a warning in my compiler
To copy to clipboard, switch view to plain text mode
Bookmarks