From 4e9e9e29061e8a2f1674ca6860eef9b0168c3920 Mon Sep 17 00:00:00 2001 From: Sambit Das Date: Mon, 26 Nov 2018 10:43:27 -0500 Subject: [PATCH] minor typo and stylistic issue fix --- include/deal.II/base/process_grid.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/process_grid.h b/include/deal.II/base/process_grid.h index 8e2064991a..0673c6d44b 100644 --- a/include/deal.II/base/process_grid.h +++ b/include/deal.II/base/process_grid.h @@ -121,7 +121,7 @@ namespace Utilities /** * Return row of this process in the process grid. * - * It's negative for in-active processes. + * It's negative for inactive processes. */ int get_this_process_row() const; @@ -129,7 +129,7 @@ namespace Utilities /** * Return column of this process in the process grid. * - * It's negative for in-active processes. + * It's negative for inactive processes. */ int get_this_process_column() const; @@ -233,6 +233,7 @@ namespace Utilities } + inline int ProcessGrid::get_this_process_row() const { @@ -240,6 +241,7 @@ namespace Utilities } + inline int ProcessGrid::get_this_process_column() const { -- 2.39.5