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

@ -45,8 +45,8 @@ namespace boost { namespace fusion
set()
: data() {}
template <typename T>
explicit set(T const& rhs)
template <typename Sequence>
set(Sequence const& rhs)
: data(rhs) {}
#include <boost/fusion/sequence/container/set/detail/set_forward_ctor.hpp>