Merge pull request #7775 from vjpai/this

Remove this->
pull/7836/head
kpayson64 9 years ago committed by GitHub
commit 1754624312
  1. 4
      src/cpp/util/byte_buffer.cc

@ -104,8 +104,8 @@ ByteBuffer& ByteBuffer::operator=(const ByteBuffer& buf) {
void ByteBuffer::Swap(ByteBuffer* other) {
grpc_byte_buffer* tmp = other->buffer_;
other->buffer_ = this->buffer_;
this->buffer_ = tmp;
other->buffer_ = buffer_;
buffer_ = tmp;
}
} // namespace grpc

Loading…
Cancel
Save