]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
More stray semicola.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 9 Jan 2003 16:56:15 +0000 (16:56 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 9 Jan 2003 16:56:15 +0000 (16:56 +0000)
git-svn-id: https://svn.dealii.org/trunk@6901 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/source/numerics/data_out.cc
deal.II/deal.II/source/numerics/data_out_rotation.cc
deal.II/deal.II/source/numerics/data_out_stack.cc

index 293abbaaa6fc8581edd0d2956721d6e59c4e2e92..c603a6705d68a10113e261b8f422555c1fc78d0c 100644 (file)
@@ -640,7 +640,7 @@ void DataOut<dim>::build_patches (const unsigned int n_subdivisions,
                    Threads::encapsulate (&DataOut<dim>::build_some_patches)
                    .collect_args (this, thread_data[l]));
   thread_manager.wait();
-};
+}
 
 
 template <int dim>
@@ -648,7 +648,7 @@ typename DoFHandler<dim>::cell_iterator
 DataOut<dim>::first_cell () 
 {
   return this->dofs->begin_active ();
-};
+}
 
 
 template <int dim>
@@ -661,7 +661,7 @@ DataOut<dim>::next_cell (const typename DoFHandler<dim>::cell_iterator &cell)
   typename DoFHandler<dim>::active_cell_iterator active_cell = cell;
   ++active_cell;
   return active_cell;
-};
+}
 
 
 // explicit instantiations
index 7cddd25c52987f40889cc3108671f64ba55f8ee8..d4e0e2ccf9974477a7511d3b0a53d62e10a0aefa 100644 (file)
@@ -292,7 +292,7 @@ void DataOutRotation<dim>::build_some_patches (Data data)
          cell=next_cell(cell);
        };
     };
-};
+}
 
 
 
@@ -306,7 +306,7 @@ void DataOutRotation<3>::build_some_patches (Data)
                                   // to output/compute in four space
                                   // dimensions?
   Assert (false, ExcNotImplemented());
-};
+}
 
 #endif
 
@@ -399,7 +399,7 @@ void DataOutRotation<dim>::build_patches (const unsigned int n_patches_per_circl
   else
                                      // just one thread
     build_some_patches(thread_data[0]);
-};
+}
 
 
 
@@ -408,7 +408,7 @@ typename DoFHandler<dim>::cell_iterator
 DataOutRotation<dim>::first_cell () 
 {
   return this->dofs->begin_active ();
-};
+}
 
 
 template <int dim>
@@ -421,7 +421,7 @@ DataOutRotation<dim>::next_cell (const typename DoFHandler<dim>::cell_iterator &
   typename DoFHandler<dim>::active_cell_iterator active_cell = cell;
   ++active_cell;
   return active_cell;
-};
+}
 
 
 // explicit instantiations
index 3307d5b2aee4f02190e9688d782573b83f066ac9..d3799a61ef04b43b4d537c30c285541cc3b53850 100644 (file)
@@ -39,13 +39,13 @@ DataOutStack<dim>::DataVector::memory_consumption () const
 {
   return (MemoryConsumption::memory_consumption (data) +
          MemoryConsumption::memory_consumption (names));
-};
+}
 
 
 
 template <int dim>
 DataOutStack<dim>::~DataOutStack ()
-{};
+{}
 
 
 template <int dim>
@@ -69,14 +69,14 @@ void DataOutStack<dim>::new_parameter_value (const double p,
     Assert (i->data.size() == 0,
            ExcDataNotCleared ());
   
-};
+}
 
 
 template <int dim>
 void DataOutStack<dim>::attach_dof_handler (const DoFHandler<dim> &dof) 
 {
   dof_handler = &dof;
-};
+}
 
 
 template <int dim>
@@ -86,7 +86,7 @@ void DataOutStack<dim>::declare_data_vector (const std::string &name,
   std::vector<std::string> names;
   names.push_back (name);
   declare_data_vector (names, vector_type);
-};
+}
 
 
 template <int dim>
@@ -126,7 +126,7 @@ void DataOutStack<dim>::declare_data_vector (const std::vector<std::string> &nam
            cell_data.back().names = names;
            break;
     };
-};
+}
 
 
 template <int dim>
@@ -137,7 +137,7 @@ void DataOutStack<dim>::add_data_vector (const Vector<number> &vec,
   std::vector<std::string> names;
   names.push_back (name);
   add_data_vector (vec, names);
-};
+}
 
 
 template <int dim>
@@ -191,7 +191,7 @@ void DataOutStack<dim>::add_data_vector (const Vector<number> &vec,
       Assert (data_vector != cell_data.end(),
              ExcVectorNotDeclared (names[0]));
     };
-};
+}
 
 
 template <int dim>
@@ -320,7 +320,7 @@ void DataOutStack<dim>::build_patches (const unsigned int n_subdivisions)
            };
        };
     };
-};
+}
 
 
 template <int dim>
@@ -335,7 +335,7 @@ void DataOutStack<dim>::finish_parameter_value ()
   for (typename std::vector<DataVector>::iterator i=cell_data.begin();
        i!=cell_data.end(); ++i)
     i->data.reinit (0);
-};
+}
 
 
 
@@ -350,7 +350,7 @@ DataOutStack<dim>::memory_consumption () const
          MemoryConsumption::memory_consumption (patches) +
          MemoryConsumption::memory_consumption (dof_data) +
          MemoryConsumption::memory_consumption (cell_data));
-};
+}
 
 
 
@@ -359,7 +359,7 @@ const std::vector< ::DataOutBase::Patch<dim+1> > &
 DataOutStack<dim>::get_patches () const
 {
   return patches;
-};
+}
 
 
 
@@ -375,7 +375,7 @@ std::vector<std::string> DataOutStack<dim>::get_dataset_names () const
     names.insert (names.end(), dataset->names.begin(), dataset->names.end());
   
   return names;
-};
+}
 
 
 // explicit instantiations

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.