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
map()
: data() {}
template <typename T>
explicit map(T const& rhs)
template <typename Sequence>
map(Sequence const& rhs)
: data(rhs) {}
#include <boost/fusion/sequence/container/map/detail/map_forward_ctor.hpp>