Skip to content
Snippets Groups Projects
Commit 00e2b947 authored by Dominik Thoennes's avatar Dominik Thoennes
Browse files

fixed missing semicolon in Likwid macro

parent 5e1c9617
Branches
Tags
No related merge requests found
//====================================================================================================================== //======================================================================================================================
// //
// 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 // 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. // the License, or (at your option) any later version.
// //
// waLBerla is distributed in the hope that it will be useful, but WITHOUT // waLBerla is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details. // for more details.
// //
// You should have received a copy of the GNU General Public License along // 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/>. // with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
// //
...@@ -208,9 +208,9 @@ void Timeloop::executeSelectable( const selectable::SetSelectableObject<VoidFctN ...@@ -208,9 +208,9 @@ void Timeloop::executeSelectable( const selectable::SetSelectableObject<VoidFctN
WALBERLA_LOG_PROGRESS("Running " << what << " \"" << objectName << "\"" ); WALBERLA_LOG_PROGRESS("Running " << what << " \"" << objectName << "\"" );
timing[objectName].start(); timing[objectName].start();
LIKWID_MARKER_START( objectName.c_str() ) LIKWID_MARKER_START( objectName.c_str() );
(*exe)(); (*exe)();
LIKWID_MARKER_STOP( objectName.c_str() ) LIKWID_MARKER_STOP( objectName.c_str() );
timing[objectName].end(); timing[objectName].end();
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment