]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Standardize on 'template <class DoFHandlerType>'.
authorWolfgang Bangerth <bangerth@colostate.edu>
Fri, 21 Jul 2017 18:42:49 +0000 (12:42 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Fri, 21 Jul 2017 18:45:07 +0000 (12:45 -0600)
include/deal.II/dofs/dof_handler_policy.h
source/dofs/dof_handler_policy.cc

index 03cf46e0b3c9cc5cfc5682ac3612313fff1d3866..15acc466cca424aa1189188020b4e260279f22c9 100644 (file)
@@ -110,7 +110,7 @@ namespace internal
        * This class implements the default policy for sequential operations,
        * i.e. for the case where all cells get degrees of freedom.
        */
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       class Sequential : public PolicyBase<DoFHandlerType::dimension,DoFHandlerType::space_dimension>
       {
       public:
@@ -155,7 +155,7 @@ namespace internal
        * This class implements the policy for operations when we use a
        * parallel::shared::Triangulation object.
        */
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       class ParallelShared : public PolicyBase<DoFHandlerType::dimension,DoFHandlerType::space_dimension>
       {
       public:
@@ -216,7 +216,7 @@ namespace internal
        * This class implements the policy for operations when we use a
        * parallel::distributed::Triangulation object.
        */
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       class ParallelDistributed : public PolicyBase<DoFHandlerType::dimension,DoFHandlerType::space_dimension>
       {
       public:
index 0b1e5a3c5de43a96eaf06361876cb65be5f0906f..d0bc815498dee0878ff0d1a09efa7fcf1b2e09b7 100644 (file)
@@ -67,7 +67,7 @@ namespace internal
          * Update the cache used for cell dof indices on all (non-artificial)
          * active cells of the given DoFHandler.
          */
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         void
         update_all_active_cell_dof_indices_caches (const DoFHandlerType &dof_handler)
         {
@@ -104,7 +104,7 @@ namespace internal
          * Update the cache used for cell dof indices on all (non-artificial)
          * level (multigrid) cells of the given DoFHandler.
          */
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         void
         update_all_level_cell_dof_indices_caches (const DoFHandlerType &dof_handler)
         {
@@ -1117,7 +1117,7 @@ namespace internal
          * numbers::invalid_subdomain_id. Return the total number of dofs
          * distributed.
          */
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         static
         types::global_dof_index
         distribute_dofs (const types::subdomain_id     subdomain_id,
@@ -1367,7 +1367,7 @@ namespace internal
 
 
 
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         static
         types::global_dof_index
         distribute_dofs_on_level (const types::subdomain_id level_subdomain_id,
@@ -1808,7 +1808,7 @@ namespace internal
          * (The IndexSet argument is not used in 1d because we only need
          * it for parallel meshes and 1d doesn't support that right now.)
          */
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         static
         void
         renumber_dofs (const std::vector<types::global_dof_index> &new_numbers,
@@ -2125,7 +2125,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       Sequential<DoFHandlerType>::
       Sequential (DoFHandlerType &dof_handler)
         :
@@ -2134,7 +2134,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       Sequential<DoFHandlerType>::
       distribute_dofs () const
@@ -2149,7 +2149,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       std::vector<NumberCache>
       Sequential<DoFHandlerType>::
       distribute_mg_dofs () const
@@ -2181,7 +2181,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       Sequential<DoFHandlerType>::
       renumber_dofs (const std::vector<types::global_dof_index> &new_numbers) const
@@ -2203,7 +2203,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       Sequential<DoFHandlerType>::
       renumber_mg_dofs (const unsigned int                          level,
@@ -2220,7 +2220,7 @@ namespace internal
       /* --------------------- class ParallelShared ---------------- */
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       ParallelShared<DoFHandlerType>::
       ParallelShared (DoFHandlerType &dof_handler)
         :
@@ -2239,7 +2239,7 @@ namespace internal
          * consequently, be called at a point when we are still distributing degrees
          * of freedom.
          */
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         std::vector<types::subdomain_id>
         get_dof_subdomain_association (const DoFHandlerType          &dof_handler,
                                        const types::global_dof_index  n_dofs,
@@ -2303,7 +2303,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelShared<DoFHandlerType>::
       distribute_dofs () const
@@ -2461,7 +2461,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       std::vector<NumberCache>
       ParallelShared<DoFHandlerType>::
       distribute_mg_dofs () const
@@ -2478,7 +2478,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelShared<DoFHandlerType>::
       renumber_dofs (const std::vector<types::global_dof_index> &new_numbers) const
@@ -2619,7 +2619,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelShared<DoFHandlerType>::
       renumber_mg_dofs (const unsigned int                          /*level*/,
@@ -3004,7 +3004,7 @@ namespace internal
 
 
 
-        template <int dim, int spacedim, typename DoFHandlerType>
+        template <int dim, int spacedim, class DoFHandlerType>
         void
         communicate_mg_ghost_cells(const typename parallel::distributed::Triangulation<dim,spacedim> &tria,
                                    DoFHandlerType  &dof_handler,
@@ -3278,7 +3278,7 @@ namespace internal
 
 
 
-        template <typename DoFHandlerType>
+        template <class DoFHandlerType>
         void
         communicate_dof_indices_on_marked_cells
         (const DoFHandlerType &dof_handler,
@@ -3482,7 +3482,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       ParallelDistributed<DoFHandlerType>::
       ParallelDistributed (DoFHandlerType &dof_handler)
         :
@@ -3494,7 +3494,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelDistributed<DoFHandlerType>::
       distribute_dofs () const
@@ -3711,7 +3711,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       std::vector<NumberCache>
       ParallelDistributed<DoFHandlerType>::
       distribute_mg_dofs () const
@@ -3967,7 +3967,7 @@ namespace internal
       }
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelDistributed<DoFHandlerType>::
       renumber_dofs (const std::vector<dealii::types::global_dof_index> &new_numbers) const
@@ -4171,7 +4171,7 @@ namespace internal
 
 
 
-      template <typename DoFHandlerType>
+      template <class DoFHandlerType>
       NumberCache
       ParallelDistributed<DoFHandlerType>::
       renumber_mg_dofs (const unsigned int                          /*level*/,

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.