From 65fd2c8cc1d15f458437480a7c7a91b1d459ef4b Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 27 Apr 2015 22:23:16 -0400 Subject: [PATCH] Update to match the current style guide. --- include/deal.II/grid/tria_iterator.templates.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/grid/tria_iterator.templates.h b/include/deal.II/grid/tria_iterator.templates.h index 057121ca42..f822de9e2b 100644 --- a/include/deal.II/grid/tria_iterator.templates.h +++ b/include/deal.II/grid/tria_iterator.templates.h @@ -121,18 +121,18 @@ TriaRawIterator::operator = (const TriaRawIterator &i) template inline bool -TriaRawIterator::operator == (const TriaRawIterator &i) const +TriaRawIterator::operator == (const TriaRawIterator &other) const { - return accessor == i.accessor; + return accessor == other.accessor; } template inline bool -TriaRawIterator::operator != (const TriaRawIterator &i) const +TriaRawIterator::operator != (const TriaRawIterator &other) const { - return not (*this == i); + return ! (*this == other); } -- 2.39.5