From 37ac531413b0b571aca052fce2eb237a056dc4bb Mon Sep 17 00:00:00 2001 From: Karthik Kalyanaraman Date: Thu, 2 Jan 2020 17:05:46 -0800 Subject: [PATCH] =?UTF-8?q?Fix=20"invalid=20use=20of=20incomplete=20type?= =?UTF-8?q?=20=E2=80=98std::stringstream'"=20(#25)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include to fix this issue for gcc8 on linux --- src/claims.cpp | 2 ++ src/tools.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/src/claims.cpp b/src/claims.cpp index 142a2da..64fea34 100644 --- a/src/claims.cpp +++ b/src/claims.cpp @@ -20,6 +20,8 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. +#include + #include #include #include diff --git a/src/tools.cpp b/src/tools.cpp index 5ecf725..ba291fe 100644 --- a/src/tools.cpp +++ b/src/tools.cpp @@ -21,6 +21,7 @@ // SOFTWARE. #include +#include #include #include