|
-
July 15th, 2010, 05:53 AM
#1
Enum Issue
Hi Experts
I am migrating one project from Vc 6.0 to Vc 8.0. I found one compilation Error regarding Enum.
In Vc 6.0 they have declared an enum in a class and again the same enum they are using in other class with scope resolution and have changed the enum value. It is compiling fine on Vc 6.0 but throwing an error while compiling in Vc 8.0.
Example code.
class CTest
{
public:
enum TestEnum {NA=0, First};
};
class CTest1
{
public:
enum CTest::TestEnum {Second, Third};
};
It is working fine in Vc 6.0 but throwing error in Vc 8.0
Error is:- error C2911: 'CTest::TestEnum' : cannot be declared or defined in the current scope
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|