File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ class HTTP1xCodec : public HTTPCodec {
2626 ~HTTP1xCodec () override ;
2727
2828 HTTP1xCodec (HTTP1xCodec&&) = default ;
29+ HTTP1xCodec& operator =(HTTP1xCodec&&) = default ;
30+ HTTP1xCodec (const HTTP1xCodec&) = delete ;
31+ HTTP1xCodec& operator =(const HTTP1xCodec&) = delete ;
2932
3033 // Returns codec for response generation, allowing to set flags that are
3134 // normally set during request processing.
Original file line number Diff line number Diff line change @@ -253,6 +253,8 @@ class HTTP2Codec
253253 DeferredParseError () = default;
254254 DeferredParseError (DeferredParseError&& goner) = default;
255255 DeferredParseError& operator =(DeferredParseError&& goner) = default ;
256+ ~DeferredParseError () = default ;
257+ DeferredParseError& operator =(const DeferredParseError&) = delete ;
256258 DeferredParseError (const DeferredParseError& other)
257259 : errorCode(other.errorCode),
258260 connectionError(other.connectionError),
You can’t perform that action at this time.
0 commit comments