From 3b590c377a4cf0027c4c6e813c20db68a8b64570 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 6 Aug 2020 15:11:04 -0700 Subject: [PATCH 1/2] Fix #815 --- src/dscanner/analysis/vcall_in_ctor.d | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/dscanner/analysis/vcall_in_ctor.d b/src/dscanner/analysis/vcall_in_ctor.d index 820b4de..8ab5412 100644 --- a/src/dscanner/analysis/vcall_in_ctor.d +++ b/src/dscanner/analysis/vcall_in_ctor.d @@ -162,6 +162,18 @@ 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(Constructor) ctor) { pushInCtor(isInClass); @@ -404,6 +416,18 @@ unittest } }, sac); + assertAnalyzerWarnings(q{ + class C { + static struct S { + public: + this(int) { + foo(); + } + void foo() {} + } + } + }, sac); + import std.stdio: writeln; writeln("Unittest for VcallCtorChecker passed"); } From 2174832e9ffa260e7da233e916a52f2011a5ce34 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 6 Aug 2020 17:27:16 -0700 Subject: [PATCH 2/2] Fix tabs/spaces --- src/dscanner/analysis/vcall_in_ctor.d | 44 +++++++++++++-------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/dscanner/analysis/vcall_in_ctor.d b/src/dscanner/analysis/vcall_in_ctor.d index 8ab5412..e2a0f6d 100644 --- a/src/dscanner/analysis/vcall_in_ctor.d +++ b/src/dscanner/analysis/vcall_in_ctor.d @@ -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");