I occasionally use 64 bit arithmetic in an open source C++ library of mine. I discovered that long long serves my purpose quite nicely. Even some 10 year old solaris box could compile it. And it works without messing around with #defines on Windows too.
Now the issue is I get complaints from my users because they compile with GCC -pedantic settings, and GCC insists on issuing warnings that long long is not part of the C++ standard. This is probably right, but I am not too interested in the C++ standard per se, I just want my code to work on as many compilers as reasonably possible.
So my question is twofold:
- can anyone name actual C++ compilers that don't support 64 bit long long's?
- is there a way to make GCC compile 64 bit arithmetic (on 32 bit platform) without compiler warnings? (stdint.h does not help, as it also depends on
long long)
P.S.
If there are platforms where long longs become 128 bit or bigger, that is interesting, but not a problem for me.

-pedanticis there to help you write code that will be easy to port to other compilers in future. If you aren't worried about that, you don't have to use it, but you will end up being the person who's writing all those third-party libraries that (a) produce weird warnings, and (b) quite possibly don't work on some compilers. Granted,long longisn't the most likely real problem, but I used to work on a portable product and several times we fixed stuff from the Windows boys that actually didn't work on some of our platforms (and gcc -pedantic would have told them so). – Steve Jessop Oct 25 '10 at 18:57-pedantic. Clifford thinks for no reason, because he thinks pedantic warnings are pointless, and that your users are silly. I doubt this analysis on several counts :-) – Steve Jessop Oct 25 '10 at 19:38