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

Function print_default_created

tests/constructor_stats.h:304–307  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

302}
303template <class T, typename... Values>
304void print_default_created(T *inst, Values &&...values) {
305 print_constr_details(inst, "created via default constructor", values...);
306 track_default_created(inst, values...);
307}
308template <class T, typename... Values>
309void print_created(T *inst, Values &&...values) {
310 print_constr_details(inst, "created", values...);

Callers 14

ExampleMandAMethod · 0.85
DynamicClassMethod · 0.85
PayloadMethod · 0.85
MoveOnlyIntMethod · 0.85
MoveOrCopyIntMethod · 0.85
CopyOnlyIntMethod · 0.85
DestructionTesterMethod · 0.85
BMethod · 0.85
TestFactory1Method · 0.85
TestFactory2Method · 0.85
TestFactory3Method · 0.85
TestFactory4Method · 0.85

Calls 2

print_constr_detailsFunction · 0.85
track_default_createdFunction · 0.85

Tested by 12

ExampleMandAMethod · 0.68
DynamicClassMethod · 0.68
PayloadMethod · 0.68
MoveOnlyIntMethod · 0.68
MoveOrCopyIntMethod · 0.68
CopyOnlyIntMethod · 0.68
DestructionTesterMethod · 0.68
BMethod · 0.68
TestFactory1Method · 0.68
TestFactory2Method · 0.68
TestFactory3Method · 0.68
TestFactory4Method · 0.68