Tagged Questions
The pod-types tag has no wiki summary.
2
votes
1answer
187 views
computing hash values, integral types versus struct/class
I would like to know if there is a difference in speed between computing hash value (for example std::map key) of primitive integral type, such as int64_t and pod type, for example struct { int16_t ...
1
vote
6answers
797 views
C/C++: Size of builtin types for various compilers/platforms
Where can I go to get information about the size of, say, unsigned int compiling under gcc for Mac OS X (both 32 and 64 bits)? In general I'd love to have a resource I can go to with a ...