]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Explicitly specify template arguments in calls to a template function in an anonymous...
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 26 Sep 2007 16:10:01 +0000 (16:10 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 26 Sep 2007 16:10:01 +0000 (16:10 +0000)
git-svn-id: https://svn.dealii.org/trunk@15250 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/source/data_out_base.cc
deal.II/examples/step-27/Makefile

index a5165e86ac60154e16b8a3bea6748e7944e1a4e1..eabffc4f8451f2f89c43b52b2193bb8c38733375 100644 (file)
@@ -1358,7 +1358,7 @@ void DataOutBase::write_ucd (const std::vector<Patch<dim,spacedim> > &patches,
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes (patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim> (patches, n_nodes, n_cells);
                                   ///////////////////////
                                   // preamble
   if (flags.write_preamble)
@@ -1442,7 +1442,7 @@ void DataOutBase::write_dx (const std::vector<Patch<dim,spacedim> > &patches,
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes(patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim>(patches, n_nodes, n_cells);
                                   // start with vertices order is
                                   // lexicographical, x varying
                                   // fastest
@@ -2623,7 +2623,7 @@ void DataOutBase::write_gmv (const std::vector<Patch<dim,spacedim> > &patches,
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes(patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim>(patches, n_nodes, n_cells);
   
                                   // in gmv format the vertex
                                   // coordinates and the data have an
@@ -2750,7 +2750,7 @@ void DataOutBase::write_tecplot (const std::vector<Patch<dim,spacedim> > &patche
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes(patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim>(patches, n_nodes, n_cells);
 
                                   ///////////
                                   // preamble
@@ -3018,7 +3018,7 @@ void DataOutBase::write_tecplot_binary (const std::vector<Patch<dim,spacedim> >
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes(patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim>(patches, n_nodes, n_cells);
                                     // local variables only needed to write Tecplot
                                     // binary output files  
   const unsigned int vars_per_node  = (spacedim+n_data_sets),  
@@ -3329,7 +3329,7 @@ void DataOutBase::write_vtk (const std::vector<Patch<dim,spacedim> > &patches,
                                   // and cells for later use
   unsigned int n_nodes;
   unsigned int n_cells;
-  compute_sizes(patches, n_nodes, n_cells);
+  compute_sizes<dim,spacedim>(patches, n_nodes, n_cells);
                                   // in gmv format the vertex
                                   // coordinates and the data have an
                                   // order that is a bit unpleasant
index ad64734a77e1bac3870e14850ed9214c549f4f70..7f7400590aab30725179871ea2249b85d13d7eee 100644 (file)
@@ -14,7 +14,7 @@ target = $(basename $(shell echo step-*.cc))
 # run-time checking of parameters and internal states is performed, so
 # you should set this value to `on' while you develop your program,
 # and to `off' when running production computations.
-debug-mode = on
+debug-mode = off
 
 
 # As third field, we need to give the path to the top-level deal.II

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.