From a076202aae833a36c22e63a8c255221b2e68e2d9 Mon Sep 17 00:00:00 2001 From: guido Date: Mon, 21 Jun 1999 21:07:39 +0000 Subject: [PATCH] cosmetics git-svn-id: https://svn.dealii.org/trunk@1427 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_system.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe_system.h b/deal.II/deal.II/include/fe/fe_system.h index 8591c3ad33..7722c06dae 100644 --- a/deal.II/deal.II/include/fe/fe_system.h +++ b/deal.II/deal.II/include/fe/fe_system.h @@ -353,13 +353,13 @@ class FESystem // * of finite elements composed * into this structure. */ - virtual unsigned n_base_elements() const; + virtual unsigned int n_base_elements() const; /** * How often is a composing element used. * */ - unsigned element_multiplicity(unsigned index) const; + unsigned int element_multiplicity(unsigned int index) const; /** * Access to a composing element. @@ -376,14 +376,14 @@ class FESystem // * by index. * */ - virtual const FiniteElement& base_element(unsigned index) const; + virtual const FiniteElement& base_element(unsigned int index) const; private: /** * Pairs of multiplicity and element type. */ - typedef pair *, unsigned > ElementPair; + typedef pair *, unsigned int> ElementPair; /** * Pointer to underlying finite @@ -411,7 +411,7 @@ class FESystem // * shape functions of the base * element. */ - vector component_to_base_table; + vector component_to_base_table; /** * Helper function used in the constructor: @@ -493,7 +493,7 @@ class FESystem // /* ------------------------- template functions ------------------------- */ template -inline unsigned +inline unsigned int FESystem::n_base_elements() const { return base_elements.size(); @@ -502,8 +502,8 @@ FESystem::n_base_elements() const template -inline unsigned -FESystem::element_multiplicity(unsigned index) const +inline unsigned int +FESystem::element_multiplicity(unsigned int index) const { Assert (index < base_elements.size(), ExcIndexRange(index, 0, base_elements.size())); @@ -514,7 +514,7 @@ FESystem::element_multiplicity(unsigned index) const template inline const FiniteElement& -FESystem::base_element(unsigned index) const +FESystem::base_element(unsigned int index) const { Assert (index < base_elements.size(), ExcIndexRange(index, 0, base_elements.size())); -- 2.39.5