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.
Two Three options:
1) Pick a different name, I think you already got that.
2) Use a namespace
:
namespace X
{
typedef long size_t;
}
and the type as
X::size_t x;
3) Ugly, guaranteed to get you fired, and me downvoted:
typedef unsigned int my_size_t;
#define size_t my_size_t
It is probably a bad idea to try to redefine a type that's in one of the standard headers. What are you trying to accomplish? Why don't you want to use the standard size_t definition?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With