It seems safe to cast the result of my vector\'s size()
function to an unsigned int
. How can I tell for sure, though? My documentation isn\'t cle
The C++ standard only states that size_t is found in
Your best bet is to stick with integer types that are large enough to hold a pointer on your platform. In C99, that'd be intptr_t and uintptr_t, also officially located in