Skip to content
Snippets Groups Projects
Commit c4752d88 authored by Vijay Pai's avatar Vijay Pai
Browse files

Remove this->

parent f4112fc0
No related branches found
No related tags found
No related merge requests found
...@@ -104,8 +104,8 @@ ByteBuffer& ByteBuffer::operator=(const ByteBuffer& buf) { ...@@ -104,8 +104,8 @@ ByteBuffer& ByteBuffer::operator=(const ByteBuffer& buf) {
void ByteBuffer::Swap(ByteBuffer* other) { void ByteBuffer::Swap(ByteBuffer* other) {
grpc_byte_buffer* tmp = other->buffer_; grpc_byte_buffer* tmp = other->buffer_;
other->buffer_ = this->buffer_; other->buffer_ = buffer_;
this->buffer_ = tmp; buffer_ = tmp;
} }
} // namespace grpc } // namespace grpc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment