template <int dim, typename Accessor>
TriaRawIterator<dim,Accessor> TriaRawIterator<dim,Accessor>::operator ++ (int) {
TriaRawIterator<dim,Accessor> tmp(*this);
- this->operator++ ();
+ operator++ ();
return tmp;
};
template <int dim, typename Accessor>
TriaRawIterator<dim,Accessor> TriaRawIterator<dim,Accessor>::operator -- (int) {
TriaRawIterator<dim,Accessor> tmp(*this);
- this->operator-- ();
+ operator-- ();
return tmp;
};
template <int dim, typename Accessor>
TriaIterator<dim,Accessor> TriaIterator<dim,Accessor>::operator ++ (int) {
TriaIterator<dim,Accessor> tmp(*this);
- this->operator++ ();
+ operator++ ();
return tmp;
};
template <int dim, typename Accessor>
TriaIterator<dim,Accessor> TriaIterator<dim,Accessor>::operator -- (int) {
TriaIterator<dim,Accessor> tmp(*this);
- this->operator-- ();
+ operator-- ();
return tmp;
};
// has_children() is called anyway, even if
// state==past_the_end, and will then
// throw the exception!
- //
- // for egcs: write this-> to avoid internal
- // compiler error
- if (this->state() != past_the_end)
+ if (state() != past_the_end)
Assert (accessor.has_children()==false,
ExcAssignmentOfInactiveObject());
#endif
// has_children() is called anyway, even if
// state==past_the_end, and will then
// throw the exception!
- //
- // for egcs: write this-> to avoid internal
- // compiler error
- if (this->state() != past_the_end)
+ if (state() != past_the_end)
Assert (accessor.has_children()==false,
ExcAssignmentOfInactiveObject());
#endif
// has_children() is called anyway, even if
// state==past_the_end, and will then
// throw the exception!
- //
- // for egcs: write this-> to avoid internal
- // compiler error
- if (this->state() != past_the_end)
+ if (state() != past_the_end)
Assert (accessor.has_children()==false,
ExcAssignmentOfInactiveObject());
#endif
// has_chidlren() is called anyway, even if
// state==past_the_end, and will then
// throw the exception!
- //
- // for egcs: write this-> to avoid internal
- // compiler error
- if (this->state() != past_the_end)
+ if (state() != past_the_end)
Assert (accessor.used() && accessor.has_children()==false,
ExcAssignmentOfInactiveObject());
#endif
// has_children() is called anyway, even if
// state==past_the_end, and will then
// throw the exception!
- //
- // for egcs: write this-> to avoid internal
- // compiler error
- if (this->state() != past_the_end)
+ if (state() != past_the_end)
Assert (accessor.has_children()==false,
ExcAssignmentOfInactiveObject());
#endif
template <int dim, typename Accessor>
TriaActiveIterator<dim,Accessor> & TriaActiveIterator<dim,Accessor>::operator ++ () {
- // for egcs: write this-> to avoid internal
- // compiler error
while (TriaIterator<dim,Accessor>::operator++(),
- (this->state() == valid))
+ (state() == valid))
if (accessor.has_children() == false)
return *this;
return *this;
template <int dim, typename Accessor>
TriaActiveIterator<dim,Accessor> TriaActiveIterator<dim,Accessor>::operator ++ (int) {
TriaActiveIterator<dim,Accessor> tmp(*this);
- this->operator++ ();
+ operator++ ();
return tmp;
};
template <int dim, typename Accessor>
TriaActiveIterator<dim,Accessor> & TriaActiveIterator<dim,Accessor>::operator -- () {
- // for egcs: write this-> to avoid internal
- // compiler error
while (TriaIterator<dim,Accessor>::operator--(),
- (this->state() == valid))
+ (state() == valid))
if (accessor.has_children() == false)
return *this;
return *this;
template <int dim, typename Accessor>
TriaActiveIterator<dim,Accessor> TriaActiveIterator<dim,Accessor>::operator -- (int) {
TriaActiveIterator<dim,Accessor> tmp(*this);
- this->operator-- ();
+ operator-- ();
return tmp;
};