In Visual Studio, when I hover the mouse over size_t it tells me it is a typedef of unsigned int or unsigned long long depending on target platform. Also, of course, the explicit cast will make it go away because doing that will set it to UINT32_MAX or UINT64_MAX. That is obv...
Cons: The sizes of integral types in C++ can vary based on compiler and architecture. Decision: defines types like int16_t, uint32_t, int64_t, etc. You should always use those in preference to short, unsigned long long and the like, when you need a guarantee on the size of an ...
error C2679: binary '=' : no operator found which takes a right-hand operand of type 'unsigned short [260]' (or there is no acceptable conversion) error C2679: binary '==' : no operator found which takes a right-hand operand of type 'std::string' error C2712: Cannot use __t...