Skip to content
Snippets Groups Projects
Commit cec70438 authored by Victor Poughon's avatar Victor Poughon
Browse files

BUG: fix comment in macro syntax error

parent 17a4c5a4
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ public:
template<typename Tuple = InputTypesTupleType, typename Check = typename std::enable_if<n<=std::tuple_size<Tuple>::value >::type> \
void SetInput ## n(const typename std::tuple_element<n-1,Tuple>::type * img) \
{ \
this->template SetVInput<n-1>(img); // template keyword to avoid C++ parsing ambiguity \
this->template SetVInput<n-1>(img); \
}
// The following defines legacy setters SetInput1()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment