From e8c57591a3f5617726b1358eb4e6b26b44036937 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Tue, 28 Jan 2020 16:39:28 -0800 Subject: [PATCH] Missing #include in tests --- test/2-throw_exception_no_exceptions_test.cpp | 1 + test/4-throw_exception_no_both_test.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/test/2-throw_exception_no_exceptions_test.cpp b/test/2-throw_exception_no_exceptions_test.cpp index 02f0e96..5d70ca1 100644 --- a/test/2-throw_exception_no_exceptions_test.cpp +++ b/test/2-throw_exception_no_exceptions_test.cpp @@ -5,6 +5,7 @@ #define BOOST_NO_EXCEPTIONS #include +#include class my_exception: public std::exception { }; diff --git a/test/4-throw_exception_no_both_test.cpp b/test/4-throw_exception_no_both_test.cpp index 421ad45..93708e8 100644 --- a/test/4-throw_exception_no_both_test.cpp +++ b/test/4-throw_exception_no_both_test.cpp @@ -6,6 +6,7 @@ #define BOOST_NO_EXCEPTIONS #define BOOST_EXCEPTION_DISABLE #include +#include class my_exception: public std::exception { };