fix trac issue #1608

[SVN r53915]
This commit is contained in:
Joel de Guzman
2009-06-15 01:54:01 +00:00
parent 363ff5750f
commit 63ce990a8c
5 changed files with 10 additions and 9 deletions

View File

@ -32,14 +32,14 @@ namespace boost { namespace fusion
template <>
struct make_vector<>
{
typedef vector0 type;
typedef vector0<> type;
};
}
inline vector0
inline vector0<>
make_vector()
{
return vector0();
return vector0<>();
}
#define BOOST_FUSION_AS_FUSION_ELEMENT(z, n, data) \