I have a typedef defined in my code as
typdef unsigned int size_t;
it is conflicting with stddef’s
typedef __SIZE_TYPE__ size_t;
I’m unsure how to get around this but would still like to keep size_t in my code.
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.
TwoThree options:1) Pick a different name, I think you already got that.
2) Use a
namespace:and the type as
3) Ugly, guaranteed to get you fired, and me downvoted: