From: Ralf Hartmann Date: Wed, 22 Feb 2006 07:41:20 +0000 (+0000) Subject: Add some missing this->. X-Git-Tag: v8.0.0~12226 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9331c65c9f6a544359860c2f88378c61685631e2;p=dealii.git Add some missing this->. git-svn-id: https://svn.dealii.org/trunk@12456 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/hp_fe_values.cc b/deal.II/deal.II/source/fe/hp_fe_values.cc index 9d38944f0e..89c8cdf88e 100644 --- a/deal.II/deal.II/source/fe/hp_fe_values.cc +++ b/deal.II/deal.II/source/fe/hp_fe_values.cc @@ -149,13 +149,13 @@ namespace hp real_fe_index = fe_index; if (real_q_index == deal_II_numbers::invalid_unsigned_int) - if (q_collection.size() > 1) + if (this->q_collection.size() > 1) real_q_index = cell->active_fe_index(); else real_q_index = 0; if (real_mapping_index == deal_II_numbers::invalid_unsigned_int) - if (mapping_collection->size() > 1) + if (this->mapping_collection->size() > 1) real_mapping_index = cell->active_fe_index(); else real_mapping_index = 0; @@ -164,12 +164,12 @@ namespace hp real_fe_index = cell->active_fe_index(); // some checks - Assert (real_q_index < q_collection.size(), - ExcIndexRange (real_q_index, 0, q_collection.size())); - Assert (real_mapping_index < mapping_collection->size(), - ExcIndexRange (real_mapping_index, 0, mapping_collection->size())); - Assert (real_fe_index < fe_collection->size(), - ExcIndexRange (real_fe_index, 0, fe_collection->size())); + Assert (real_q_index < this->q_collection.size(), + ExcIndexRange (real_q_index, 0, this->q_collection.size())); + Assert (real_mapping_index < this->mapping_collection->size(), + ExcIndexRange (real_mapping_index, 0, this->mapping_collection->size())); + Assert (real_fe_index < this->fe_collection->size(), + ExcIndexRange (real_fe_index, 0, this->fe_collection->size())); // now finally actually get the // corresponding object and @@ -222,13 +222,13 @@ namespace hp real_fe_index = fe_index; if (real_q_index == deal_II_numbers::invalid_unsigned_int) - if (q_collection.size() > 1) + if (this->q_collection.size() > 1) real_q_index = cell->active_fe_index(); else real_q_index = 0; if (real_mapping_index == deal_II_numbers::invalid_unsigned_int) - if (mapping_collection->size() > 1) + if (this->mapping_collection->size() > 1) real_mapping_index = cell->active_fe_index(); else real_mapping_index = 0; @@ -237,12 +237,12 @@ namespace hp real_fe_index = cell->active_fe_index(); // some checks - Assert (real_q_index < q_collection.size(), - ExcIndexRange (real_q_index, 0, q_collection.size())); - Assert (real_mapping_index < mapping_collection->size(), - ExcIndexRange (real_mapping_index, 0, mapping_collection->size())); - Assert (real_fe_index < fe_collection->size(), - ExcIndexRange (real_fe_index, 0, fe_collection->size())); + Assert (real_q_index < this->q_collection.size(), + ExcIndexRange (real_q_index, 0, this->q_collection.size())); + Assert (real_mapping_index < this->mapping_collection->size(), + ExcIndexRange (real_mapping_index, 0, this->mapping_collection->size())); + Assert (real_fe_index < this->fe_collection->size(), + ExcIndexRange (real_fe_index, 0, this->fe_collection->size())); // now finally actually get the // corresponding object and @@ -296,13 +296,13 @@ namespace hp real_fe_index = fe_index; if (real_q_index == deal_II_numbers::invalid_unsigned_int) - if (q_collection.size() > 1) + if (this->q_collection.size() > 1) real_q_index = cell->active_fe_index(); else real_q_index = 0; if (real_mapping_index == deal_II_numbers::invalid_unsigned_int) - if (mapping_collection->size() > 1) + if (this->mapping_collection->size() > 1) real_mapping_index = cell->active_fe_index(); else real_mapping_index = 0; @@ -311,12 +311,12 @@ namespace hp real_fe_index = cell->active_fe_index(); // some checks - Assert (real_q_index < q_collection.size(), - ExcIndexRange (real_q_index, 0, q_collection.size())); - Assert (real_mapping_index < mapping_collection->size(), - ExcIndexRange (real_mapping_index, 0, mapping_collection->size())); - Assert (real_fe_index < fe_collection->size(), - ExcIndexRange (real_fe_index, 0, fe_collection->size())); + Assert (real_q_index < this->q_collection.size(), + ExcIndexRange (real_q_index, 0, this->q_collection.size())); + Assert (real_mapping_index < this->mapping_collection->size(), + ExcIndexRange (real_mapping_index, 0, this->mapping_collection->size())); + Assert (real_fe_index < this->fe_collection->size(), + ExcIndexRange (real_fe_index, 0, this->fe_collection->size())); // now finally actually get the // corresponding object and