From 00e2b947152d1151f31d0390ba9d8065e7d2e9b7 Mon Sep 17 00:00:00 2001
From: Dominik Thoennes <dominik.thoennes@fau.de>
Date: Tue, 14 Nov 2017 11:28:59 +0100
Subject: [PATCH] fixed missing semicolon in Likwid macro

---
 src/timeloop/Timeloop.cpp | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/timeloop/Timeloop.cpp b/src/timeloop/Timeloop.cpp
index 2fb1ed97f..dea97c057 100644
--- a/src/timeloop/Timeloop.cpp
+++ b/src/timeloop/Timeloop.cpp
@@ -1,15 +1,15 @@
 //======================================================================================================================
 //
-//  This file is part of waLBerla. waLBerla is free software: you can 
+//  This file is part of waLBerla. waLBerla is free software: you can
 //  redistribute it and/or modify it under the terms of the GNU General Public
-//  License as published by the Free Software Foundation, either version 3 of 
+//  License as published by the Free Software Foundation, either version 3 of
 //  the License, or (at your option) any later version.
-//  
-//  waLBerla is distributed in the hope that it will be useful, but WITHOUT 
-//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
-//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License 
+//
+//  waLBerla is distributed in the hope that it will be useful, but WITHOUT
+//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 //  for more details.
-//  
+//
 //  You should have received a copy of the GNU General Public License along
 //  with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
 //
@@ -208,9 +208,9 @@ void Timeloop::executeSelectable( const selectable::SetSelectableObject<VoidFctN
    WALBERLA_LOG_PROGRESS("Running " << what << " \"" << objectName << "\"" );
 
    timing[objectName].start();
-   LIKWID_MARKER_START( objectName.c_str() )
+   LIKWID_MARKER_START( objectName.c_str() );
    (*exe)();
-   LIKWID_MARKER_STOP( objectName.c_str() )
+   LIKWID_MARKER_STOP( objectName.c_str() );
    timing[objectName].end();
 }
 
-- 
GitLab