From 823d86bf87f276acd4885c10e1576837861def8d Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Wed, 25 Mar 2020 22:08:29 +0100 Subject: [PATCH] Change return type of DoFHandler::n_locally_owned_dofs() --- include/deal.II/dofs/dof_handler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5