Skip to content

Commit

Permalink
typed_async_client.h: remove default assignment op
Browse files Browse the repository at this point in the history
Signed-off-by: disconnect3d <dominik.b.czarnota@gmail.com>
  • Loading branch information
disconnect3d committed Nov 29, 2021
1 parent a2ef08f commit 2a2e513
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/common/grpc/typed_async_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ template <typename Request> class AsyncStream /* : public RawAsyncStream */ {
public:
AsyncStream() = default;
AsyncStream(RawAsyncStream* stream) : stream_(stream) {}
AsyncStream& operator=(const AsyncStream&) = default;
void sendMessage(const Protobuf::Message& request, bool end_stream) {
Internal::sendMessageUntyped(stream_, std::move(request), end_stream);
}
Expand Down

0 comments on commit 2a2e513

Please sign in to comment.