Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 3.2.0-beta1
Description
#define INT int class Foo { void func(INT arg) {} };
Results in:
void Foo::func(int arg) {}
#define INT int class Foo { void func(INT arg) {} };
Results in:
void Foo::func(int arg) {}