If you define a type like typedef int MY_INT;
and go on to overload, say, the adition operator of MY_INT like
MY_INT operator+(MY_INT a, MY_INT b);
will
MY_INT a, b; a + b;
be different from
int A, B; A + B;
?
Sorry for any syntax errors. I'm not near a compiler and I want to ask this before I forget about it.