merge from trunk

[SVN r56178]
This commit is contained in:
Joel de Guzman
2009-09-14 07:40:39 +00:00
parent ea5ea7f001
commit 2f8b91828b
22 changed files with 295 additions and 51 deletions

View File

@ -16,7 +16,7 @@ namespace boost { namespace fusion
template <typename Sequence>
struct clear
{
typedef vector0 type;
typedef vector0<> type;
};
}
@ -24,7 +24,7 @@ namespace boost { namespace fusion
inline typename result_of::clear<Sequence const>::type
clear(Sequence const& seq)
{
return vector0();
return vector0<>();
}
}}