From: Wolfgang Bangerth Date: Mon, 6 May 2002 08:11:59 +0000 (+0000) Subject: Fix obvious typo. X-Git-Tag: v8.0.0~18046 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e53ea7fffc4ca35e10ad82f3e8bd4d8763717e45;p=dealii.git Fix obvious typo. git-svn-id: https://svn.dealii.org/trunk@5818 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/point.h b/deal.II/base/include/base/point.h index 20c3c2492d..4dfd03f7da 100644 --- a/deal.II/base/include/base/point.h +++ b/deal.II/base/include/base/point.h @@ -272,7 +272,7 @@ Point Point::operator - () const { Point result; for (unsigned int i=0; ivalues[i] = -this->values[i]; + result.values[i] = -this->values[i]; return result; };