| 31 | std::string trace_txt; |
| 32 | |
| 33 | custom_deleter() = default; |
| 34 | explicit custom_deleter(const std::string &trace_txt_) : trace_txt(trace_txt_) {} |
| 35 | |
| 36 | custom_deleter(const custom_deleter &other) { trace_txt = other.trace_txt + "_CpCtor"; } |
nothing calls this directly
no outgoing calls
no test coverage detected