Skip to content
Snippets Groups Projects
Commit 1143837a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[T] Remove non-required typename keyword.

In c++11 the typename is allowed but not required in non-template contexts (http://stackoverflow.com/questions/19225458/error-c2899-typename-cannot-be-used-outside-a-template-declaration).

This is not supported by currently used visual studio compiler.
parent 896e7ad6
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ TEST(AssemblerLibSerialLinearSolver, Steady2DdiffusionQuadElem) ...@@ -125,7 +125,7 @@ TEST(AssemblerLibSerialLinearSolver, Steady2DdiffusionQuadElem)
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
// solve x=A^-1 rhs // solve x=A^-1 rhs
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
typename GlobalSetup::LinearSolver ls(*A); GlobalSetup::LinearSolver ls(*A);
ls.solve(*rhs, *x); ls.solve(*rhs, *x);
// copy solution to double vector // copy solution to double vector
......
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