From: Peter Munch Date: Wed, 25 Mar 2020 21:08:29 +0000 (+0100) Subject: Change return type of DoFHandler::n_locally_owned_dofs() X-Git-Tag: v9.2.0-rc1~365^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9735%2Fhead;p=dealii.git Change return type of DoFHandler::n_locally_owned_dofs() --- diff --git a/include/deal.II/dofs/dof_handler.h b/include/deal.II/dofs/dof_handler.h index dd51e6c4ce..1572d52f99 100644 --- a/include/deal.II/dofs/dof_handler.h +++ b/include/deal.II/dofs/dof_handler.h @@ -1023,7 +1023,7 @@ public: * cells owned by other processors may be theirs, and degrees of freedom on * ghost cells are also not necessarily included. */ - unsigned int + types::global_dof_index n_locally_owned_dofs() const; /** @@ -1495,7 +1495,7 @@ DoFHandler::n_dofs(const unsigned int level) const template -unsigned int +types::global_dof_index DoFHandler::n_locally_owned_dofs() const { return number_cache.n_locally_owned_dofs;