I want to use U32 type but I can’t find the header where it is defined. Does anyone know?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no standard type called
U32, but if you#include <cstdint>(stdint.hfor C) you can usestd::uint32_t1, a 32 bit unsigned integer, which is (I assume) what you want.Here is a list of types in the
cstdintheader:1 Thanks Martinho Fernandes for pointing out that these types are in the namespace
std.