Add missing includes

This commit is contained in:
Peter Dimov
2017-07-01 23:45:13 +03:00
parent 06c90d642b
commit 0cae4b02e4
3 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,8 @@
#ifndef BOOST_TT_CONDITIONAL_HPP_INCLUDED
#define BOOST_TT_CONDITIONAL_HPP_INCLUDED
#include <boost/config.hpp>
namespace boost {
template <bool b, class T, class U> struct conditional { typedef T type; };

View File

@ -10,6 +10,7 @@
#define BOOST_TT_REMOVE_POINTER_HPP_INCLUDED
#include <boost/config.hpp>
#include <boost/config/workaround.hpp>
#if defined(BOOST_MSVC)
#include <boost/type_traits/remove_cv.hpp>

View File

@ -9,6 +9,8 @@
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/config.hpp>
namespace boost
{