Skip to content
Snippets Groups Projects
Commit ea386074 authored by Oliver Sander's avatar Oliver Sander
Browse files

Replace dynamic_cast<::LoopSolver by dynamic_cast< ::LoopSolver (note the extra space)

Either way should be fine, but I just ran into a gcc 4.7 that would
complain about the <:: without the space.
parent 6cab957a
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ preprocess()
if (typeid(*this->basesolver_) == typeid(::LoopSolver<VectorType>)) {
::LoopSolver<VectorType>* loopBaseSolver = dynamic_cast<::LoopSolver<VectorType>* > (this->basesolver_);
::LoopSolver<VectorType>* loopBaseSolver = dynamic_cast< ::LoopSolver<VectorType>* > (this->basesolver_);
typedef ProjectedBlockGSStep<MatrixType, VectorType> SmootherType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment