* accessor without access to the DoF data.
*/
TriaIterator<DoFCellAccessor<DoFHandlerType, level_dof_access> >
- neighbor (const unsigned int) const;
+ neighbor (const unsigned int i) const;
/**
* Return the @p ith periodic neighbor as a DoF cell iterator. This function
* accessor without access to the DoF data.
*/
TriaIterator<DoFCellAccessor<DoFHandlerType, level_dof_access> >
- periodic_neighbor (const unsigned int) const;
+ periodic_neighbor (const unsigned int i) const;
/**
* Return the @p ith neighbor or periodic neighbor as a DoF cell iterator.
* returns a cell accessor without access to the DoF data.
*/
TriaIterator<DoFCellAccessor<DoFHandlerType, level_dof_access> >
- neighbor_or_periodic_neighbor (const unsigned int) const;
+ neighbor_or_periodic_neighbor (const unsigned int i) const;
/**
* Return the @p ith child as a DoF cell iterator. This function is needed
* without access to the DoF data.
*/
TriaIterator<DoFCellAccessor<DoFHandlerType, level_dof_access> >
- child (const unsigned int) const;
+ child (const unsigned int i) const;
/**
* Return an iterator to the @p ith face of this cell.
const bool periodic_neighbor = cell->has_periodic_neighbor(face_no);
if ((!periodic_neighbor && cell->neighbor_is_coarser(face_no))
- ||(periodic_neighbor && cell->periodic_neighbor_is_coarser(face_no)))
+ || (periodic_neighbor && cell->periodic_neighbor_is_coarser(face_no)))
{
Assert(!cell->has_children(), ExcInternalError());
Assert(!neighbor->has_children(), ExcInternalError());