From ef52757baefd5298aace7b0e5324b8fc5cf61e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Tr=C3=A1vn=C3=AD=C4=8Dek?= <jan.travnicek@fit.cvut.cz> Date: Sun, 26 Dec 2021 06:45:36 +0100 Subject: [PATCH] tests: add missing includes with libc++ --- tests/cppaql/approximateMatching.cpp | 1 + tests/cppaql/arbologyTest.cpp | 1 + tests/cppaql/conversionsTest.cpp | 1 + tests/cppaql/conversionsTest2.cpp | 1 + tests/cppaql/exactMatching.cpp | 1 + tests/cppaql/minimizeTest.cpp | 1 + tests/cppaql/regexpOptimizeTest.cpp | 1 + tests/cppaql/treeNotationTest.cpp | 1 + 8 files changed, 8 insertions(+) diff --git a/tests/cppaql/approximateMatching.cpp b/tests/cppaql/approximateMatching.cpp index 4d7b61e7be..282754bd80 100644 --- a/tests/cppaql/approximateMatching.cpp +++ b/tests/cppaql/approximateMatching.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/arbologyTest.cpp b/tests/cppaql/arbologyTest.cpp index 07774381ef..398b57897e 100644 --- a/tests/cppaql/arbologyTest.cpp +++ b/tests/cppaql/arbologyTest.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/conversionsTest.cpp b/tests/cppaql/conversionsTest.cpp index 3f48ad2d1f..fb557a33f0 100644 --- a/tests/cppaql/conversionsTest.cpp +++ b/tests/cppaql/conversionsTest.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/conversionsTest2.cpp b/tests/cppaql/conversionsTest2.cpp index cb68b44a8b..7750d34a22 100644 --- a/tests/cppaql/conversionsTest2.cpp +++ b/tests/cppaql/conversionsTest2.cpp @@ -1,5 +1,6 @@ #include <alib/vector> #include <catch2/catch.hpp> +#include <sstream> #include "testing/TestFiles.hpp" #include "testing/TimeoutAqlTest.hpp" diff --git a/tests/cppaql/exactMatching.cpp b/tests/cppaql/exactMatching.cpp index a1bbf020e1..57badeccbe 100644 --- a/tests/cppaql/exactMatching.cpp +++ b/tests/cppaql/exactMatching.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/minimizeTest.cpp b/tests/cppaql/minimizeTest.cpp index af307866ad..572c348a47 100644 --- a/tests/cppaql/minimizeTest.cpp +++ b/tests/cppaql/minimizeTest.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/regexpOptimizeTest.cpp b/tests/cppaql/regexpOptimizeTest.cpp index 2e73a7b0fc..7d5c4e8539 100644 --- a/tests/cppaql/regexpOptimizeTest.cpp +++ b/tests/cppaql/regexpOptimizeTest.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" diff --git a/tests/cppaql/treeNotationTest.cpp b/tests/cppaql/treeNotationTest.cpp index 096c3cb2e8..3056c6fe0b 100644 --- a/tests/cppaql/treeNotationTest.cpp +++ b/tests/cppaql/treeNotationTest.cpp @@ -1,5 +1,6 @@ #include <catch2/catch.hpp> #include <alib/vector> +#include <sstream> #include "testing/TimeoutAqlTest.hpp" #include "testing/TestFiles.hpp" -- GitLab