From 84f1342e3cfe5c11ba1795e531560a43f49a424c Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Fri, 13 Jul 2018 11:18:59 +0200 Subject: [PATCH] Fix indentation --- include/deal.II/base/subscriptor.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/include/deal.II/base/subscriptor.h b/include/deal.II/base/subscriptor.h index a0846ab026..9a44a0dae2 100644 --- a/include/deal.II/base/subscriptor.h +++ b/include/deal.II/base/subscriptor.h @@ -27,7 +27,7 @@ #include #ifdef DEAL_II_WITH_THREADS -#include +# include #endif DEAL_II_NAMESPACE_OPEN @@ -133,7 +133,8 @@ public: * List the subscribers to the input @p stream. */ template - void list_subscribers (StreamType &stream) const; + void + list_subscribers(StreamType &stream) const; /** * List the subscribers to @p deallog. @@ -271,21 +272,16 @@ Subscriptor::serialize(Archive &, const unsigned int) } template -inline -void +inline void Subscriptor::list_subscribers(StreamType &stream) const { #ifdef DEAL_II_WITH_THREADS std::lock_guard lock(mutex); #endif - for (map_iterator it = counter_map.begin(); - it != counter_map.end(); ++it) - stream - << it->second << '/' - << counter << " subscriptions from \"" - << it->first << '\"' - << std::endl; + for (map_iterator it = counter_map.begin(); it != counter_map.end(); ++it) + stream << it->second << '/' << counter << " subscriptions from \"" + << it->first << '\"' << std::endl; } DEAL_II_NAMESPACE_CLOSE -- 2.39.5