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

Class A

tests/conditionalExplicitTest.cpp:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6struct C {};
7
8struct A {
9 A() = default;
10 explicit(true) A(const B&) {}
11 explicit(false) A(const C&) {}
12 explicit(true) operator B() const { return {}; };
13};
14
15template<typename T>
16struct Wrapper {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected