Fix tabs/spaces

This commit is contained in:
Hackerpilot 2020-08-06 17:27:16 -07:00
parent 3b590c377a
commit 2174832e9f
1 changed files with 22 additions and 22 deletions

View File

@ -162,17 +162,17 @@ public:
popNestedFunc();
}
override void visit(const(StructDeclaration) decl)
{
pushVirtual(false);
pushInClass(false);
pushNestedFunc(false);
decl.accept(this);
check();
popVirtual();
popInClass();
popNestedFunc();
}
override void visit(const(StructDeclaration) decl)
{
pushVirtual(false);
pushInClass(false);
pushNestedFunc(false);
decl.accept(this);
check();
popVirtual();
popInClass();
popNestedFunc();
}
override void visit(const(Constructor) ctor)
{
@ -416,17 +416,17 @@ unittest
}
}, sac);
assertAnalyzerWarnings(q{
class C {
static struct S {
public:
this(int) {
foo();
}
void foo() {}
}
}
}, sac);
assertAnalyzerWarnings(q{
class C {
static struct S {
public:
this(int) {
foo();
}
void foo() {}
}
}
}, sac);
import std.stdio: writeln;
writeln("Unittest for VcallCtorChecker passed");