Partially disabling old names generation for classes with nspace
This commit is contained in:
parent
869de3e761
commit
3028b16cee
3 changed files with 29 additions and 15 deletions
|
|
@ -67,7 +67,11 @@ namespace Outer {
|
|||
const Outer::Inner2::Color& col2c) {}
|
||||
}; // Color
|
||||
int Color::staticMemberVariable = 0;
|
||||
class NoNSpacePlease {};
|
||||
class NoNSpacePlease {
|
||||
public:
|
||||
enum NoNSpaceEnum { NoNspace1 = 1, NoNspace2 = 10 };
|
||||
static int noNspaceStaticFunc() { return 10; }
|
||||
};
|
||||
} // Inner2
|
||||
|
||||
// Derived class
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue