| 23 | static bool enabled; |
| 24 | |
| 25 | DependentGuard() { enabled = CustomGuard::enabled; } |
| 26 | ~DependentGuard() { enabled = false; } |
| 27 | |
| 28 | static const char *report_status() { return enabled ? "guarded" : "unguarded"; } |
nothing calls this directly
no outgoing calls
no test coverage detected