]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Unbreak compilation. 1428/head
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 25 Aug 2015 13:33:10 +0000 (08:33 -0500)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 25 Aug 2015 13:33:10 +0000 (08:33 -0500)
Apparently for some compilers we need to say this-> here, whereas
it works on my system :-(

source/fe/mapping_q.cc

index ad5784c1de549a787eee665d0cc92afc6bde3d86..6cde1177b971b441f4e573946d4043cf422d0f3b 100644 (file)
@@ -218,9 +218,9 @@ MappingQ<dim,spacedim>::get_data (const UpdateFlags update_flags,
   tasks.join_all ();
 
   // TODO: parallelize this as well
-  compute_shapes (quadrature.get_points(), *data);
+  this->compute_shapes (quadrature.get_points(), *data);
   if (!use_mapping_q_on_all_cells)
-    compute_shapes (quadrature.get_points(), data->mapping_q1_data);
+    this->compute_shapes (quadrature.get_points(), data->mapping_q1_data);
 
 
   return data;
@@ -254,9 +254,9 @@ MappingQ<dim,spacedim>::get_face_data (const UpdateFlags update_flags,
   tasks.join_all ();
 
   // TODO: parallelize this as well
-  compute_shapes (q.get_points(), *data);
+  this->compute_shapes (q.get_points(), *data);
   if (!use_mapping_q_on_all_cells)
-    compute_shapes (q.get_points(), data->mapping_q1_data);
+    this->compute_shapes (q.get_points(), data->mapping_q1_data);
 
   return data;
 }
@@ -289,9 +289,9 @@ MappingQ<dim,spacedim>::get_subface_data (const UpdateFlags update_flags,
   tasks.join_all ();
 
   // TODO: parallelize this as well
-  compute_shapes (q.get_points(), *data);
+  this->compute_shapes (q.get_points(), *data);
   if (!use_mapping_q_on_all_cells)
-    compute_shapes (q.get_points(), data->mapping_q1_data);
+    this->compute_shapes (q.get_points(), data->mapping_q1_data);
 
 
   return data;

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.