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

COMP: Fix compilation error (double template keyword)

parent 4b529f85
Branches
Tags
No related merge requests found
......@@ -185,7 +185,7 @@ template<class C, class Out, class ... In> struct OperProxy<void(C::*)(Out&, In.
template<class C, class Out, class ... In> struct OperProxy<void(C::*)(Out&, In...) const>
{
template template<class Oper> static void Compute(Oper& oper, Out& out, const In& ... in)
template<class Oper> static void Compute(Oper& oper, Out& out, const In& ... in)
{
oper(out,in...);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment