| 409 | State* state_; |
| 410 | |
| 411 | void DeleteState() noexcept { |
| 412 | // ARROW-2400: On certain compilers, splitting off the slow path improves |
| 413 | // performance significantly. |
| 414 | delete state_; |
| 415 | } |
| 416 | void CopyFrom(const Status& s); |
| 417 | inline void MoveFrom(Status& s); |
| 418 |