MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / A

Class A

tests/EduCfrontVtable4Test.cpp:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <cstdio>
4
5struct A {
6 double md;
7 virtual ~A() { puts("dtor"); }
8
9 virtual void Fun() { puts("fun a"); }
10};
11
12struct B : A {
13 int mX{5};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected