#A Constructor allowing implicit conversion
| 14 | |
| 15 | // #A Constructor allowing implicit conversion |
| 16 | Format( |
| 17 | const char* _fmt, |
| 18 | std::source_location _loc = std::source_location::current()) |
| 19 | : fmt{_fmt} |
| 20 | , loc{_loc} |
| 21 | {} |
| 22 | }; |
| 23 | |
| 24 | // #B Log now takes Format which implicitly adds source location |
nothing calls this directly
no outgoing calls
no test coverage detected