Missing #include <stdlib.h> in tests

This commit is contained in:
Emil Dotchevski
2020-01-28 16:39:28 -08:00
parent c4e5f44e94
commit e8c57591a3
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#define BOOST_NO_EXCEPTIONS
#include <boost/throw_exception.hpp>
#include <stdlib.h>
class my_exception: public std::exception { };

View File

@ -6,6 +6,7 @@
#define BOOST_NO_EXCEPTIONS
#define BOOST_EXCEPTION_DISABLE
#include <boost/throw_exception.hpp>
#include <stdlib.h>
class my_exception: public std::exception { };