Skip to content
Snippets Groups Projects
Commit 3fca72a9 authored by Julien Michel's avatar Julien Michel
Browse files

Merge branch 'functorfilter' into functor_filter_named_inputs

parents 7cf407e6 dbe6f862
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ template<typename TOut, typename ...TIns> struct VariadicConcatenate
auto operator()(const TIns &... ins) const
{
itk::VariableLengthVector<TOut> out;
variadic_concatenate_details::concatenateVectors(out, internal::toVector(ins)...);
variadic_concatenate_details::concatenateVectors(out, variadic_concatenate_details::toVector(ins)...);
return out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment