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