| 7256 | // the else branch. |
| 7257 | struct GTEST_API_ ConstCharPtr { |
| 7258 | ConstCharPtr(const char* str) : value(str) {} |
| 7259 | operator bool() const { return true; } |
| 7260 | const char* value; |
| 7261 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected