Mitigate too noisy name-hiding warnings (C4453) on VS2015 Preview.

NOTE: This commit doesn't contain new preprocessed file to review easier.
This commit is contained in:
Kohei Takahashi
2014-11-17 01:44:31 +09:00
parent 2a50f7caad
commit 9075da0790
20 changed files with 54 additions and 54 deletions

View File

@ -122,9 +122,9 @@ namespace boost { namespace fusion
// of type (T0), (T0, T1), (T0, T1, T2) etc. Example:
//
// vector(
// typename detail::call_param<T0>::type _0
// , typename detail::call_param<T1>::type _1)
// : vec(_0, _1) {}
// typename detail::call_param<T0>::type arg0
// , typename detail::call_param<T1>::type arg1)
// : vec(arg0, arg1) {}
#include <boost/fusion/container/vector/detail/vector_forward_ctor.hpp>
template <BOOST_PP_ENUM_PARAMS(FUSION_MAX_VECTOR_SIZE, typename U)>