Skip to content
Snippets Groups Projects
Commit 7d6d8a04 authored by Markus Blatt's avatar Markus Blatt
Browse files

[bugfix] Removed bogus typename usage outside of template.

There was a typename used outside of template which caused
failed compilation of twolevelmethodest (at least for gcc-4.4).
This patch removes the bogus typename.
parent f554e470
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ typedef Dune::BlockVector<VectorBlock> Vector;
typedef Dune::MatrixAdapter<BCRSMat,Vector,Vector> Operator;
typedef Dune::CollectiveCommunication<void*> Comm;
typedef Dune::SeqSSOR<BCRSMat,Vector,Vector> Smoother;
typedef typename Dune::Amg::SmootherTraits<Smoother>::Arguments SmootherArgs;
typedef Dune::Amg::SmootherTraits<Smoother>::Arguments SmootherArgs;
#ifndef USE_OVERLAPPINGSCHWARZ
typedef Dune::SeqSSOR<BCRSMat,Vector,Vector> FSmoother;
#else
......
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