Copilot commented on code in PR #13377: URL: https://github.com/apache/trafficserver/pull/13377#discussion_r3574033468
########## proxy/http2/Http2ConnectionState.h: ########## @@ -242,6 +242,7 @@ class Http2ConnectionState : public Continuation Event *shutdown_cont_event = nullptr; Event *fini_event = nullptr; Event *zombie_event = nullptr; + std::vector<Event *> _xmit_events; Review Comment: Http2ConnectionState.h now directly uses std::vector for _xmit_events but doesn’t include <vector> itself, so it relies on transitive includes. That can break compilation if include ordering changes; include <vector> explicitly in this header. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
