[cig-commits] r1274 - trunk/aspect/source/velocity_boundary_conditions

bangerth at dealii.org bangerth at dealii.org
Sat Oct 13 12:29:35 PDT 2012


Author: bangerth
Date: 2012-10-13 13:29:35 -0600 (Sat, 13 Oct 2012)
New Revision: 1274

Modified:
   trunk/aspect/source/velocity_boundary_conditions/gplates.cc
Log:
Make conform to C++98.

Modified: trunk/aspect/source/velocity_boundary_conditions/gplates.cc
===================================================================
--- trunk/aspect/source/velocity_boundary_conditions/gplates.cc	2012-10-13 03:08:14 UTC (rev 1273)
+++ trunk/aspect/source/velocity_boundary_conditions/gplates.cc	2012-10-13 19:29:35 UTC (rev 1274)
@@ -220,16 +220,16 @@
           /**
            * Tables which contain the velocities
            */
-          dealii::Table<2,Tensor<1,2>> velocity_vals;
-          dealii::Table<2,Tensor<1,2>> old_velocity_vals;
+          dealii::Table<2,Tensor<1,2> > velocity_vals;
+          dealii::Table<2,Tensor<1,2> > old_velocity_vals;
 
           /**
            * Pointers to the actual tables.
            * Used to avoid unnecessary copying
            * of values.
            */
-          dealii::Table<2,Tensor<1,2>> * velocity_values;
-          dealii::Table<2,Tensor<1,2>> * old_velocity_values;
+          dealii::Table<2,Tensor<1,2> > * velocity_values;
+          dealii::Table<2,Tensor<1,2> > * old_velocity_values;
 
           /**
            * Distances between adjacent point in the Lat/Lon grid



More information about the CIG-COMMITS mailing list