From: wolf Date: Fri, 11 Feb 2000 09:52:10 +0000 (+0000) Subject: Fix some forgotten places. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6191797d8ae632b81ff54302e05df0abe46e72a;p=dealii-svn.git Fix some forgotten places. git-svn-id: https://svn.dealii.org/trunk@2384 0785d39b-7218-0410-832d-ea1e28bc413d --- 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