This is an automated email from the ASF dual-hosted git repository. zwoop pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/9.0.x by this push: new cfe7902 Cleanup: fix a inline function style cfe7902 is described below commit cfe79020c4bf34b09a4d06b4cd9c491c213d4195 Author: Masaori Koshiba <masa...@apache.org> AuthorDate: Mon Mar 30 09:06:34 2020 +0900 Cleanup: fix a inline function style (cherry picked from commit 6f51f7209f066ebb7bcae2b0e207b46806949238) --- proxy/http2/Http2Stream.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy/http2/Http2Stream.h b/proxy/http2/Http2Stream.h index df560a1..2707a8e 100644 --- a/proxy/http2/Http2Stream.h +++ b/proxy/http2/Http2Stream.h @@ -284,9 +284,9 @@ Http2Stream::set_request_headers(HTTPHdr &h2_headers) _req_header.copy(&h2_headers); } -inline // Check entire DATA payload length if content-length: header is exist - void - Http2Stream::increment_data_length(uint64_t length) +// Check entire DATA payload length if content-length: header is exist +inline void +Http2Stream::increment_data_length(uint64_t length) { data_length += length; }