From a33155a07d51c5d13e240d6e74838dbd983aea4f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 31 May 2002 06:39:46 +0000 Subject: [PATCH] Fix type introduced with last-second change. git-svn-id: https://svn.dealii.org/trunk@5950 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/vector2d.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/base/include/base/vector2d.h b/deal.II/base/include/base/vector2d.h index ee903918ba..b2345b2e6c 100644 --- a/deal.II/base/include/base/vector2d.h +++ b/deal.II/base/include/base/vector2d.h @@ -501,7 +501,7 @@ ConstRowAccessor (const vector2d &parent, template inline -T +typename vector2d::ConstRowAccessor::const_reference vector2d::ConstRowAccessor:: operator [] (const unsigned int column) const { @@ -547,7 +547,7 @@ NonConstRowAccessor (vector2d &parent, template inline -T & +typename vector2d::NonConstRowAccessor::reference vector2d::NonConstRowAccessor:: operator [] (const unsigned int column) const { -- 2.39.5