Tagged Questions

6
votes
2answers
391 views

How to avoid problems with size_t and int types in 64bit C++ builds?

Today I made a 64bit build of my project for the first time. Basically it compiled, linked and ran ok, except for warnings complaining about incompatibility between the new, 64bit size_t type and the ...
3
votes
3answers
119 views

Allocating large amount of memory and usage of size_t?

In my application ,I am allocating memory to store "volume data" which read from stack of bitmap images. I stored the data in a "unsigned char" and ,during allocation, first I try to allocate ...
3
votes
4answers
9k 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
758 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 ...