You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
schoenherr
Posted - Mar 21 2018 : 06:12:35 AM with the following source
struct S1
{
int foo() { return 0; }
};
void bar()
{
{
struct S2 : public S1
{
using S1::S1;
using S1::foo;
} s2;
}
}
class C1
{};
visual assist outline does no longer recognize class C1
1 L A T E S T R E P L I E S (Newest First)
feline
Posted - Mar 21 2018 : 08:44:04 AM Thank you for the very clear example, I am seeing the same problem here:
case=115268
Do you have many places you see this problem? You have already found the simplest code that shows the problem, so it should not be to difficult to edit the code to stop this happening for you, as a temporary work around.