Ubuntu – Should I use INT64_C as "int64_t literal" …?
How can I write portable code to compare a constant integer value with an int64_t variable across different platforms (MacOS and Ubuntu)? int64_t a = 2; std::min(1, a); Fails to compile on MacOS when I use 1L as the constant…