| 13 | static bool enabled; |
| 14 | |
| 15 | CustomGuard() { enabled = true; } |
| 16 | ~CustomGuard() { enabled = false; } |
| 17 | |
| 18 | static const char *report_status() { return enabled ? "guarded" : "unguarded"; } |
nothing calls this directly
no outgoing calls
no test coverage detected