Tagged Questions
1
vote
5answers
759 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 ...