From: Timo Heister Date: Sat, 12 Jul 2014 21:13:06 +0000 (-0700) Subject: make first_ and next_locally_owned_cell virtual X-Git-Tag: v8.4.0-rc2~277^2~46 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d15bf232c1471cf01c3a86177e2b1936e1de6c1;p=dealii.git make first_ and next_locally_owned_cell virtual --- diff --git a/include/deal.II/numerics/data_out.h b/include/deal.II/numerics/data_out.h index 0bc554148c..27482deaf1 100644 --- a/include/deal.II/numerics/data_out.h +++ b/include/deal.II/numerics/data_out.h @@ -254,14 +254,14 @@ private: * pair that is locally owned. If this object operates on a non-distributed * triangulation, the result equals what first_cell() returns. */ - cell_iterator first_locally_owned_cell (); + virtual cell_iterator first_locally_owned_cell (); /** * Return the next cell produced by the next_cell() function that is locally * owned. If this object operates on a non-distributed triangulation, the * result equals what first_cell() returns. */ - cell_iterator next_locally_owned_cell (const cell_iterator &cell); + virtual cell_iterator next_locally_owned_cell (const cell_iterator &cell); /** * Build one patch. This function is called in a WorkStream context.