From: Guido Kanschat Date: Fri, 3 Jan 2014 12:16:21 +0000 (+0000) Subject: remove default argument X-Git-Tag: v8.2.0-rc1~1085 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=430d5ca8cdb35dbd99c01816c1a31363212c3cbd;p=dealii.git remove default argument git-svn-id: https://svn.dealii.org/trunk@32147 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index 26c26d3acf..1bae0ad4a5 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -306,7 +306,7 @@ namespace Step12 &AdvectionProblem::integrate_cell_term, &AdvectionProblem::integrate_boundary_term, &AdvectionProblem::integrate_face_term, - assembler, true); + assembler); }