From: wolf Date: Thu, 9 Jan 2003 16:56:15 +0000 (+0000) Subject: More stray semicola. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9a7045eae349a842766ac8a5b0cfe3c07db472f;p=dealii-svn.git More stray semicola. git-svn-id: https://svn.dealii.org/trunk@6901 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/data_out.cc b/deal.II/deal.II/source/numerics/data_out.cc index 293abbaaa6..c603a6705d 100644 --- a/deal.II/deal.II/source/numerics/data_out.cc +++ b/deal.II/deal.II/source/numerics/data_out.cc @@ -640,7 +640,7 @@ void DataOut::build_patches (const unsigned int n_subdivisions, Threads::encapsulate (&DataOut::build_some_patches) .collect_args (this, thread_data[l])); thread_manager.wait(); -}; +} template @@ -648,7 +648,7 @@ typename DoFHandler::cell_iterator DataOut::first_cell () { return this->dofs->begin_active (); -}; +} template @@ -661,7 +661,7 @@ DataOut::next_cell (const typename DoFHandler::cell_iterator &cell) typename DoFHandler::active_cell_iterator active_cell = cell; ++active_cell; return active_cell; -}; +} // explicit instantiations diff --git a/deal.II/deal.II/source/numerics/data_out_rotation.cc b/deal.II/deal.II/source/numerics/data_out_rotation.cc index 7cddd25c52..d4e0e2ccf9 100644 --- a/deal.II/deal.II/source/numerics/data_out_rotation.cc +++ b/deal.II/deal.II/source/numerics/data_out_rotation.cc @@ -292,7 +292,7 @@ void DataOutRotation::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::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::cell_iterator DataOutRotation::first_cell () { return this->dofs->begin_active (); -}; +} template @@ -421,7 +421,7 @@ DataOutRotation::next_cell (const typename DoFHandler::cell_iterator & typename DoFHandler::active_cell_iterator active_cell = cell; ++active_cell; return active_cell; -}; +} // explicit instantiations diff --git a/deal.II/deal.II/source/numerics/data_out_stack.cc b/deal.II/deal.II/source/numerics/data_out_stack.cc index 3307d5b2ae..d3799a61ef 100644 --- a/deal.II/deal.II/source/numerics/data_out_stack.cc +++ b/deal.II/deal.II/source/numerics/data_out_stack.cc @@ -39,13 +39,13 @@ DataOutStack::DataVector::memory_consumption () const { return (MemoryConsumption::memory_consumption (data) + MemoryConsumption::memory_consumption (names)); -}; +} template DataOutStack::~DataOutStack () -{}; +{} template @@ -69,14 +69,14 @@ void DataOutStack::new_parameter_value (const double p, Assert (i->data.size() == 0, ExcDataNotCleared ()); -}; +} template void DataOutStack::attach_dof_handler (const DoFHandler &dof) { dof_handler = &dof; -}; +} template @@ -86,7 +86,7 @@ void DataOutStack::declare_data_vector (const std::string &name, std::vector names; names.push_back (name); declare_data_vector (names, vector_type); -}; +} template @@ -126,7 +126,7 @@ void DataOutStack::declare_data_vector (const std::vector &nam cell_data.back().names = names; break; }; -}; +} template @@ -137,7 +137,7 @@ void DataOutStack::add_data_vector (const Vector &vec, std::vector names; names.push_back (name); add_data_vector (vec, names); -}; +} template @@ -191,7 +191,7 @@ void DataOutStack::add_data_vector (const Vector &vec, Assert (data_vector != cell_data.end(), ExcVectorNotDeclared (names[0])); }; -}; +} template @@ -320,7 +320,7 @@ void DataOutStack::build_patches (const unsigned int n_subdivisions) }; }; }; -}; +} template @@ -335,7 +335,7 @@ void DataOutStack::finish_parameter_value () for (typename std::vector::iterator i=cell_data.begin(); i!=cell_data.end(); ++i) i->data.reinit (0); -}; +} @@ -350,7 +350,7 @@ DataOutStack::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 > & DataOutStack::get_patches () const { return patches; -}; +} @@ -375,7 +375,7 @@ std::vector DataOutStack::get_dataset_names () const names.insert (names.end(), dataset->names.begin(), dataset->names.end()); return names; -}; +} // explicit instantiations