From d1acd841bb962c55e8abbc4744f9456dc3f3627c Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 4 Mar 2017 16:54:08 -0500 Subject: [PATCH] Mark some header-defined functions as inline. --- include/deal.II/base/thread_management.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/thread_management.h b/include/deal.II/base/thread_management.h index c1d81dda72..1e9d9a5b82 100644 --- a/include/deal.II/base/thread_management.h +++ b/include/deal.II/base/thread_management.h @@ -200,7 +200,7 @@ namespace Threads * Wait for all threads to reach this point. Since there may only be one * thread, return immediately, i.e. this function is a no-op. */ - int wait () const + inline int wait () const { return 0; } @@ -208,7 +208,7 @@ namespace Threads /** * Dump the state of this object. Here: do nothing. */ - void dump () const {} + inline void dump () const {} /** * @addtogroup Exceptions -- 2.39.5