| 141 | // true iff the pointer is non-NULL. |
| 142 | struct CheckOpString { |
| 143 | CheckOpString(string* str) : str_(str) {} |
| 144 | // No destructor: if str_ is non-NULL, we're about to LOG(FATAL), |
| 145 | // so there's no point in cleaning up str_. |
| 146 | operator bool() const { return str_ != NULL; } |
nothing calls this directly
no outgoing calls
no test coverage detected