From 38e470cc404dddd742fd89c794521e5c65cc8831 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 11 Feb 2000 09:52:10 +0000 Subject: [PATCH] Fix some forgotten places. git-svn-id: https://svn.dealii.org/trunk@2384 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/dof_accessor.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/deal.II/deal.II/include/dofs/dof_accessor.h b/deal.II/deal.II/include/dofs/dof_accessor.h index d80c96fa94..bdcaedef75 100644 --- a/deal.II/deal.II/include/dofs/dof_accessor.h +++ b/deal.II/deal.II/include/dofs/dof_accessor.h @@ -248,20 +248,21 @@ class DoFObjectAccessor : public DoFAccessor, * Index of the #i#th degree * of freedom of this object. */ - int dof_index (const unsigned int i) const; + unsigned int dof_index (const unsigned int i) const; /** * Set the index of the #i#th degree * of freedom of this object to #index#. */ - void set_dof_index (const unsigned int i, const int index) const; + void set_dof_index (const unsigned int i, + const int index) const; /** * Index of the #i#th degree * on the #vertex#th vertex. */ - int vertex_dof_index (const unsigned int vertex, - const unsigned int i) const; + unsigned int vertex_dof_index (const unsigned int vertex, + const unsigned int i) const; /** * Set the index of the #i#th degree @@ -269,7 +270,7 @@ class DoFObjectAccessor : public DoFAccessor, */ void set_vertex_dof_index (const unsigned int vertex, const unsigned int i, - const int index) const; + const unsigned int index) const; /** * Return the indices of the dofs of this @@ -282,7 +283,7 @@ class DoFObjectAccessor : public DoFAccessor, * right size before being passed * to this function. */ - void get_dof_indices (vector &dof_indices) const; + void get_dof_indices (vector &dof_indices) const; /** * Return the values of the given vector -- 2.39.5