| 77 | explicit StringHolderBase(const std::string* str) : value_(*str) {} |
| 78 | |
| 79 | absl::string_view value() const { return value_; } |
| 80 | |
| 81 | // Group of comparison operations. |
| 82 | friend bool operator==(StringHolderBase value1, StringHolderBase value2) { |
no outgoing calls