Remove evil numbered_vector_tag.

This commit is contained in:
Kohei Takahashi
2015-06-30 01:28:01 +09:00
parent 62d9833bbf
commit 298eeef9c9
4 changed files with 16 additions and 55 deletions

View File

@ -36,7 +36,7 @@ namespace boost { namespace fusion
template <typename... U>
struct trim_void<vector<U...> >
{
typedef vector<numbered_vector_tag<sizeof...(U)>, U...> type;
typedef vector<U...> type;
};
template <typename... U, typename... Tail>