From 2849668b0645c4ff0e816bfa7d78e4943fbbdff0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 10 May 2004 16:33:56 +0000 Subject: [PATCH] Slightly change the /= function to use *= instead of scale(). git-svn-id: https://svn.dealii.org/trunk@9225 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/vector.h b/deal.II/lac/include/lac/vector.h index afe374a872..de05932d3a 100644 --- a/deal.II/lac/include/lac/vector.h +++ b/deal.II/lac/include/lac/vector.h @@ -896,7 +896,7 @@ template inline Vector & Vector::operator /= (const Number factor) { - scale (1./factor); + *this *= (1./factor); return *this; } -- 2.39.5