| 337 | typedef void (SafeBool::*type)() const; |
| 338 | |
| 339 | static type makeSafe( bool value ) { |
| 340 | return value ? &SafeBool::trueValue : 0; |
| 341 | } |
| 342 | private: |
| 343 | void trueValue() const {} |
| 344 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected