Fix testcase for MSVC 10.0.

MSVC 10.0/11.0 have <tuple> but don't compile variadic templates.
This commit is contained in:
Kohei Takahashi
2015-02-02 04:08:13 +09:00
parent 995202044c
commit b60219eb8a
2 changed files with 6 additions and 3 deletions

View File

@ -8,7 +8,8 @@
// The std_tuple_iterator adaptor only supports implementations
// using variadic templates
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
#if !defined(BOOST_NO_CXX11_HDR_TUPLE) && \
!defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
#include <boost/fusion/adapted/std_tuple.hpp>