Added boost/config.hpp.

This commit is contained in:
Edward Diener
2020-05-06 13:16:18 -04:00
parent 3e36eaf79e
commit f5bb480082
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@
// header dependencies are deliberately restricted to the standard library
// to reduce coupling to other boost libraries.
#include <boost/config.hpp>
#include <string> // for string
#include <new> // for bad_alloc
#include <typeinfo> // for bad_cast, bad_typeid
@ -26,7 +27,7 @@
#include <boost/cstdlib.hpp> // for exit codes
#include <ostream> // for ostream
# if defined(__BORLANDC__) && !defined(__clang__) && (__BORLANDC__ <= 0x0551)
# if defined(BOOST_BORLANDC) && (__BORLANDC__ <= 0x0551)
# define BOOST_BUILT_IN_EXCEPTIONS_MISSING_WHAT
# endif

View File

@ -11,6 +11,7 @@
#ifndef BOOST_DETAIL_NAMED_TEMPLATE_PARAMS_HPP
#define BOOST_DETAIL_NAMED_TEMPLATE_PARAMS_HPP
#include <boost/config.hpp>
#include <boost/type_traits/conversion_traits.hpp>
#include <boost/type_traits/composite_traits.hpp> // for is_reference
#if defined(BOOST_BORLANDC)