From f21cd2bd51ca81702432e2172d48d53720be0d21 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Tue, 25 Feb 2003 15:11:25 +0000 Subject: [PATCH] fix preprocesed headers selection [SVN r17644] --- include/boost/mpl/aux_/config/compiler.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/config/compiler.hpp b/include/boost/mpl/aux_/config/compiler.hpp index dcbb070..2a5991c 100644 --- a/include/boost/mpl/aux_/config/compiler.hpp +++ b/include/boost/mpl/aux_/config/compiler.hpp @@ -18,6 +18,7 @@ #define BOOST_MPL_AUX_CONFIG_COMPILER_HPP_INCLUDED #include "boost/mpl/aux_/config/dtp.hpp" +#include "boost/mpl/aux_/config/ttp.hpp" #include "boost/config.hpp" #if defined(BOOST_MSVC) && BOOST_MSVC < 1300 @@ -43,7 +44,8 @@ # define BOOST_MPL_COMPILER_DIR plain # endif -#elif defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) +#elif defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \ + || defined(BOOST_NO_TEMPLATE_TEMPLATE_PARAMETERS) # define BOOST_MPL_COMPILER_DIR no_ctps #else