Top "Cstdint" questions

Header that declares types and macro constants to deal with fixed-width cross-platform integer types, available since C++11.

'uint32_t' does not name a type

I'm trying to compile a C++ software package that was written in 2007 and I'm getting this error: error: ‘uint32_t’ …

c++ uint32-t cstdint
long long int vs. long int vs. int64_t in C++

I experienced some odd behavior while using C++ type traits and have narrowed my problem down to this quirky little …

c++ gcc cstdint
<cstdint> vs <stdint.h>

What is the difference between stdint.h and cstdint? Both of them are available in MSVC (Visual Studio 2010) and gcc-4.5.1. …

c++ stdint cstdint
Converting 16-bit integer to 8-bit integer?

I'm implementing C code to copy a 16-bit sign and magnitude integer to an 8-bit sign and magnitude integer. Is …

bit-shift stdint cstdint uint16 uint8t
Should I use cstdint?

I have been pondering on whether or not I should use the typedefs inside <cstdint> or not. I …

c++ cstdint
C++11 uint types vs u_int

I just stumbled upon the type u_int8_t because it did not compile in Windows+MinGW (but compiled fine …

c++11 uint cstdint
Boost's "cstdint" Usage

Boost's C99 stdint implementation is awfully handy. One thing bugs me, though. They dump all of their typedefs into the …

c++ boost wrapper cstdint