fixed "explicit" problem

[SVN r35732]
This commit is contained in:
Joel de Guzman
2006-10-24 23:26:52 +00:00
parent 3732bb538a
commit aede3f3300
7 changed files with 17 additions and 14 deletions

View File

@ -30,8 +30,8 @@ namespace boost { namespace fusion
tuple()
: base_type() {}
template <typename T>
explicit tuple(T const& rhs)
template <typename Sequence>
tuple(Sequence const& rhs)
: base_type(rhs) {}
#include <boost/fusion/tuple/detail/tuple_forward_ctor.hpp>