From 1d90dcc311bd477390029938a1048a5f5559483c Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 6 May 2002 08:11:59 +0000 Subject: [PATCH] Fix obvious typo. git-svn-id: https://svn.dealii.org/trunk@5818 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/point.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.39.5