There is this code:
#include <cstdio>
#include <chrono>
int main()
{
auto d = std::chrono::microseconds(1).count();
printf("%lld", d);
return 0;
}
When this is compiled in 64bit mode, then there is a warning:
main.cpp: In function ‘int main()’: main.cpp:7:19: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘long int’ [-Wformat=] printf("%lld", d); ^
This warning is not present when compiling in 32bit mode (with -m32 flag). It looks like that std::chrono::duration::rep
is of type long int
in 64bit programs and long long int
in 32bit programs.
Is there a portable way to print it like %zu
specifier for size_t
?
Instead of using the
auto
qualifier, use a fixed size integer int64_t.