| 54 | Data& operator=(Data&&) = default; |
| 55 | |
| 56 | google::protobuf::Arena* absl_nullable GetArena() const { |
| 57 | return (owner_ & kOwnerBits) == kOwnerArenaBit |
| 58 | ? reinterpret_cast<google::protobuf::Arena*>(owner_ & kOwnerPointerMask) |
| 59 | : nullptr; |
| 60 | } |
| 61 | |
| 62 | protected: |
| 63 | // At this point, the reference count has not been created. So we create it |
no outgoing calls