Skip to content
Snippets Groups Projects
Commit 803491ca authored by graeser's avatar graeser
Browse files

Use qualified call to static member function.

Maybe this convinces gcc-5 to find the name.
parent 8f242d28
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ class ISTLVectorBackend
// Here we'd simply like to call resize(c[i], sizeProvider, prefix);
// but gcc does not accept this due to a bug. Instead it reports
// "error: ‘this’ was not captured for this lambda function"
forwardToResize(c[i], sizeProvider, prefix);
ISTLVectorBackend<V>::forwardToResize(c[i], sizeProvider, prefix);
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment