Hello,
This is not specifically a Symbian C++ query, but is related to C++ in general.
I ran into the following error in my code:
illegal name overloading
And what caused this was the repeated use of the same value, none, in two different enum declarations:
I would appreciate your thoughts.Code:enum A { ... none }; enum B { none, .... }
TIA
Vin

Reply With Quote

