Merge pull request #24535 from veblush/clean-up-WriteOptions

Clean up WriteOptions cctor
reviewable/pr24579/r1
Esun Kim 4 years ago committed by GitHub
commit 43333b4232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      include/grpcpp/impl/codegen/call_op_set.h

@ -79,11 +79,6 @@ inline grpc_metadata* FillMetadataArray(
class WriteOptions {
public:
WriteOptions() : flags_(0), last_message_(false) {}
WriteOptions(const WriteOptions& other)
: flags_(other.flags_), last_message_(other.last_message_) {}
/// Default assignment operator
WriteOptions& operator=(const WriteOptions& other) = default;
/// Clear all flags.
inline void Clear() { flags_ = 0; }

Loading…
Cancel
Save