You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by cm...@apache.org on 2024/03/19 15:06:23 UTC

(trafficserver) 04/06: Fix a build error (#11162)

This is an automated email from the ASF dual-hosted git repository.

cmcfarlen pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 8b455373bd1a73dfbbea5c3f5d0031e861ba8d69
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Thu Mar 14 16:18:55 2024 -0600

    Fix a build error (#11162)
    
    Before #10986 sstream was indirectly included by tscore/Errata.h but now it's not with libswoc.
    
    (cherry picked from commit 62eb17c107bb656cab6a12afc469027ceec72efa)
---
 src/iocore/net/quic/QUICTypes.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/iocore/net/quic/QUICTypes.cc b/src/iocore/net/quic/QUICTypes.cc
index e037463af8..8d35844920 100644
--- a/src/iocore/net/quic/QUICTypes.cc
+++ b/src/iocore/net/quic/QUICTypes.cc
@@ -24,6 +24,7 @@
 #include <algorithm>
 #include <iomanip>
 #include <iostream>
+#include <sstream>
 
 #include "iocore/net/quic/QUICTypes.h"
 #include "iocore/net/quic/QUICIntUtil.h"