MCPcopy Create free account
hub / github.com/pybind/pybind11 / A

Method A

tests/test_modules.cpp:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 class A {
22 public:
23 explicit A(int v) : v(v) { print_created(this, v); }
24 ~A() { print_destroyed(this); }
25 A(const A &) { print_copy_created(this); }
26 A &operator=(const A &copy) {

Callers 2

test_reference_internalFunction · 0.45

Calls 2

print_createdFunction · 0.85
print_copy_createdFunction · 0.85

Tested by

no test coverage detected