From ec3ddcfe41b0544a4551a57439b6b3682fe31479 Mon Sep 17 00:00:00 2001 From: Daniel Aarno Date: Sat, 23 Dec 2017 16:50:07 +0100 Subject: [PATCH] IWYU: sstream Explicitly include sstream in tets wherever it is used. --- examples/test11.cpp | 2 ++ examples/test12.cpp | 2 ++ examples/test14.cpp | 2 ++ examples/test15.cpp | 2 ++ examples/test16.cpp | 2 ++ 5 files changed, 10 insertions(+) diff --git a/examples/test11.cpp b/examples/test11.cpp index f7d06fe..71ae4ac 100644 --- a/examples/test11.cpp +++ b/examples/test11.cpp @@ -1,6 +1,8 @@ #include "tclap/CmdLine.h" #include +#include + using namespace TCLAP; // Define a simple 3D vector type diff --git a/examples/test12.cpp b/examples/test12.cpp index 21016ea..20447a7 100644 --- a/examples/test12.cpp +++ b/examples/test12.cpp @@ -2,6 +2,8 @@ #include #include +#include + using namespace TCLAP; // Define a simple 3D vector type diff --git a/examples/test14.cpp b/examples/test14.cpp index e194845..c33e5c0 100644 --- a/examples/test14.cpp +++ b/examples/test14.cpp @@ -2,6 +2,8 @@ #include #include +#include + // Define a simple 3D vector type template struct Vect : public TCLAP::StringLikeTrait { diff --git a/examples/test15.cpp b/examples/test15.cpp index 62cd95b..ec9dc11 100644 --- a/examples/test15.cpp +++ b/examples/test15.cpp @@ -2,6 +2,8 @@ #include #include +#include + // Define a simple 3D vector type template struct Vect { diff --git a/examples/test16.cpp b/examples/test16.cpp index fae185c..d0c9dab 100644 --- a/examples/test16.cpp +++ b/examples/test16.cpp @@ -2,6 +2,8 @@ #include #include +#include + namespace TCLAP { template<> struct ArgTraits< std::vector > {