| 642 | } |
| 643 | |
| 644 | void CouchbaseOperations::CouchbaseResponse::swap(CouchbaseResponse* other) { |
| 645 | if (other != this) { |
| 646 | _buf.swap(other->_buf); |
| 647 | std::swap(_cached_size_, other->_cached_size_); |
| 648 | } |
| 649 | } |
| 650 | |
| 651 | // =================================================================== |
| 652 |
no test coverage detected