ywkaras commented on a change in pull request #7584:
URL: https://github.com/apache/trafficserver/pull/7584#discussion_r591674710
##########
File path: proxy/http2/Http2SessionAccept.cc
##########
@@ -54,9 +54,8 @@ Http2SessionAccept::accept(NetVConnection *netvc, MIOBuffer
*iobuf, IOBufferRead
}
Http2ClientSession *new_session =
THREAD_ALLOC_INIT(http2ClientSessionAllocator, this_ethread());
- new (new_session) Http2ClientSession();
- new_session->acl = std::move(session_acl);
- new_session->accept_options = &options;
+ new_session->acl = std::move(session_acl);
+ new_session->accept_options = &options;
Review comment:
It seems like line 58 only needs one space before the = . Looks like a
bug in clang-format then.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]