Jan 26, 2015

[C++] some tiny lookout for long long type...

Since C++99

it's far better to use the sized types
std::int8_t
std::int16_t
std::int32_t
std::int64_t

and their unsigned cousins
std::uint8_t etc
whenever possible.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.