From: wolf Date: Thu, 10 Oct 2002 14:52:36 +0000 (+0000) Subject: Rename Patch::me to Patch::patch_index, to make it more clear that X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66649b724415d8c0bb396fdd7050207ad6a604c3;p=dealii-svn.git Rename Patch::me to Patch::patch_index, to make it more clear that "me" is not an abbreviation or something (I found this confusing). git-svn-id: https://svn.dealii.org/trunk@6623 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/data_out_base.h b/deal.II/base/include/base/data_out_base.h index 0f6b50a1b5..48c88b0755 100644 --- a/deal.II/base/include/base/data_out_base.h +++ b/deal.II/base/include/base/data_out_base.h @@ -403,7 +403,7 @@ class DataOutBase * in the same order, always, * we better store this. */ - unsigned int me; + unsigned int patch_index; /** * Number of subdivisions with diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index 12feb958d6..8b64834d17 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -36,7 +36,7 @@ const unsigned int DataOutBase::Patch::no_neighbor; template DataOutBase::Patch::Patch () : - me(no_neighbor), + patch_index(no_neighbor), n_subdivisions (1) // all the other data has a @@ -762,7 +762,7 @@ void DataOutBase::write_dx (const std::vector > &patches, cells_per_patch *= n; } - const unsigned int patch_start = patch->me * cells_per_patch; + const unsigned int patch_start = patch->patch_index * cells_per_patch; for (unsigned int ix=0;ix1) ? n : 1);++iy)