From: wolf Date: Mon, 22 Sep 2003 14:24:12 +0000 (+0000) Subject: Fix some dimension-dependentness. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c3398857bdf7c4b21c08dd3048c83714105c4f9;p=dealii-svn.git Fix some dimension-dependentness. git-svn-id: https://svn.dealii.org/trunk@8002 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index 1cb8e6d909..3bd1efa41f 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -2647,8 +2647,8 @@ namespace LaplaceSolver WeightedResidual::solve_problem () { Threads::ThreadGroup<> threads; - threads += Threads::spawn (*this, &WeightedResidual<2>::solve_primal_problem)(); - threads += Threads::spawn (*this, &WeightedResidual<2>::solve_dual_problem)(); + threads += Threads::spawn (*this, &WeightedResidual::solve_primal_problem)(); + threads += Threads::spawn (*this, &WeightedResidual::solve_dual_problem)(); threads.join_all (); }