diff --git a/include/grpc++/support/byte_buffer.h b/include/grpc++/support/byte_buffer.h index a089dbb4cb53b3b72d8ce771654c970dc10d6017..d3f9b7b1d1f9b4024ce57472d8dff978650067a1 100644 --- a/include/grpc++/support/byte_buffer.h +++ b/include/grpc++/support/byte_buffer.h @@ -72,9 +72,6 @@ class ByteBuffer GRPC_FINAL { /// Buffer size in bytes. size_t Length() const; - /// Move contents from \a bbuf and clear \a bbuf - void MoveFrom(ByteBuffer* bbuf); - private: friend class SerializationTraits<ByteBuffer, void>; diff --git a/src/cpp/util/byte_buffer.cc b/src/cpp/util/byte_buffer.cc index 91e202023c5635e6f0f7779b56011e6954aa8a50..5245739c89bc59bbddc915e2af88d39a5aca4a5e 100644 --- a/src/cpp/util/byte_buffer.cc +++ b/src/cpp/util/byte_buffer.cc @@ -79,12 +79,6 @@ size_t ByteBuffer::Length() const { } } -void ByteBuffer::MoveFrom(ByteBuffer* bbuf) { - Clear(); // in case we already had something, but we shouldn't use this then - buffer_ = bbuf->buffer_; - bbuf->buffer_ = nullptr; -} - ByteBuffer::ByteBuffer(const ByteBuffer& buf): buffer_(grpc_byte_buffer_copy(buf.buffer_)) { } diff --git a/test/cpp/qps/client.h b/test/cpp/qps/client.h index 4a915a7801a542150f748aefa5469540e7ad6a64..cce36933f6c1b006b17e5033e05d2902b827ce40 100644 --- a/test/cpp/qps/client.h +++ b/test/cpp/qps/client.h @@ -118,8 +118,6 @@ class ClientRequestCreator<ByteBuffer> { buf.get(), payload_config.bytebuf_params().req_size()); Slice slice(s, Slice::STEAL_REF); *req = ByteBuffer(&slice, 1); - // std::unique_ptr<ByteBuffer> bbuf(new ByteBuffer(&slice, 1)); - // req->MoveFrom(bbuf.get()); } else { GPR_ASSERT(false); // not appropriate for this specialization }