This is an automated email from the ASF dual-hosted git repository.
maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 62eb17c107 Fix a build error (#11162)
62eb17c107 is described below
commit 62eb17c107bb656cab6a12afc469027ceec72efa
Author: Masakazu Kitajo <[email protected]>
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.
---
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"