From: David Wells Date: Tue, 28 Apr 2015 02:23:16 +0000 (-0400) Subject: Update to match the current style guide. X-Git-Tag: v8.3.0-rc1~205^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65fd2c8cc1d15f458437480a7c7a91b1d459ef4b;p=dealii.git Update to match the current style guide. --- 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); }