| #include "absl/strings/string_view.h" |
| #include "absl/types/optional.h" |
| // To make the disassembly easier to read, here's a string class that doesn't get inlined. |
| string() : size_(0), data_(nullptr) {} |
| string(absl::string_view); |
| string& operator=(string &&x) { |
| std::swap(size_, x.size_); |
| std::swap(data_, x.data_); |
| //string& operator=(absl::string_view x); // not in c++14 string |
| string& assign(const char*, size_t); |
| //// END OF BOILERPLATE //// |
| ::absl::optional<string> value_; |
| void SetValue(::absl::optional<::absl::string_view> value); |
| void C::SetValue(::absl::optional<::absl::string_view> value) { |
| #if 0 // c++17's string has operator= for string_view, so just do this. |
| #else // In c++14, we have to do more work to avoid reallocation. |
| value_->assign(value->data(), value->size()); |
| value_ = ::absl::nullopt; |