1
vote
5answers
872 views
What’s sizeof(size_t) on 32-bit vs the various 64-bit data models?
On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) …
1
vote
5answers
356 views
64 bit portability issues
All this originated from me poking at a compiler warning message (C4267) when attempting the following line:
const unsigned int nSize = m_vecSomeVec.size();
size() returns a size_t which although …
