From e3402fe21ca2bc70eb0858f1f451547f3232626e Mon Sep 17 00:00:00 2001 From: Eugene Gershnik Date: Mon, 6 Nov 2023 12:43:10 -0800 Subject: [PATCH] Adding missing includes in tests --- tests/src/cpp/integration_tests.cpp | 2 ++ tests/src/cpp/utf_tests.cpp | 3 +++ 2 files changed, 5 insertions(+) diff --git a/tests/src/cpp/integration_tests.cpp b/tests/src/cpp/integration_tests.cpp index e40397e..91729da 100644 --- a/tests/src/cpp/integration_tests.cpp +++ b/tests/src/cpp/integration_tests.cpp @@ -24,6 +24,8 @@ #include "test_util.h" #include +#include +#include using namespace smjni; diff --git a/tests/src/cpp/utf_tests.cpp b/tests/src/cpp/utf_tests.cpp index e750f62..34d2a0a 100644 --- a/tests/src/cpp/utf_tests.cpp +++ b/tests/src/cpp/utf_tests.cpp @@ -18,6 +18,9 @@ #include +#include +#include + using namespace smjni; static std::u16string convert(const char * utf8)