From: wolf Date: Thu, 11 Apr 2002 14:17:51 +0000 (+0000) Subject: Add some missing typenames. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be6bba26dae72a200fc7b152fa66b54e6e06ba47;p=dealii-svn.git Add some missing typenames. git-svn-id: https://svn.dealii.org/trunk@5641 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-13/step-13.cc b/deal.II/examples/step-13/step-13.cc index 70bc958af4..c2b5205a8a 100644 --- a/deal.II/examples/step-13/step-13.cc +++ b/deal.II/examples/step-13/step-13.cc @@ -49,6 +49,7 @@ #include // Now for the C++ standard headers: +#include #include #include @@ -899,10 +900,10 @@ namespace LaplaceSolver void assemble_linear_system (LinearSystem &linear_system); - void assemble_matrix (LinearSystem &linear_system, - const DoFHandler::active_cell_iterator &begin_cell, - const DoFHandler::active_cell_iterator &end_cell, - Threads::ThreadMutex &mutex) const ; + void assemble_matrix (LinearSystem &linear_system, + const typename DoFHandler::active_cell_iterator &begin_cell, + const typename DoFHandler::active_cell_iterator &end_cell, + Threads::ThreadMutex &mutex) const ; }; @@ -1009,10 +1010,10 @@ namespace LaplaceSolver template void - Solver::assemble_matrix (LinearSystem &linear_system, - const DoFHandler::active_cell_iterator &begin_cell, - const DoFHandler::active_cell_iterator &end_cell, - Threads::ThreadMutex &mutex) const + Solver::assemble_matrix (LinearSystem &linear_system, + const typename DoFHandler::active_cell_iterator &begin_cell, + const typename DoFHandler::active_cell_iterator &end_cell, + Threads::ThreadMutex &mutex) const { //TODO: adaptive QGauss4 quadrature_formula;