From e187e0f13ab0abe499c58dae41b5b936851fb222 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 22 Aug 2013 14:25:46 +0000 Subject: [PATCH] Avoid deprecated function git-svn-id: https://svn.dealii.org/trunk@30419 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-14/step-14.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index f91bbfc666..d2d982b129 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -1692,7 +1692,7 @@ namespace Step14 // Finally, we have by now only integrated the gradients of the shape // functions, not taking their mean value. We fix this by dividing by // the measure of the volume over which we have integrated: - rhs.scale (1./total_volume); + rhs /= total_volume; } -- 2.39.5