From: wolf Date: Mon, 6 May 2002 08:11:59 +0000 (+0000) Subject: Fix obvious typo. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d90dcc311bd477390029938a1048a5f5559483c;p=dealii-svn.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; };