Fix -Wunused-parameter

This commit is contained in:
Dennis Klein 2019-06-27 12:28:56 +02:00
parent 97a3ddef28
commit 88971a0654
No known key found for this signature in database
GPG Key ID: 08E62D23FA0ECBBC

View File

@ -1,5 +1,5 @@
/******************************************************************************** /********************************************************************************
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * * Copyright (C) 2014-2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* * * *
* This software is distributed under the terms of the * * This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, * * GNU Lesser General Public Licence (LGPL) version 3, *
@ -192,7 +192,7 @@ int main()
cout << endl << "cout: removing custom sink with info severity" << endl; cout << endl << "cout: removing custom sink with info severity" << endl;
Logger::AddCustomSink("CustomSink", Severity::error, [](const string& content, const LogMetaData& metadata){}); Logger::AddCustomSink("CustomSink", Severity::error, [](const string& /*content*/, const LogMetaData& /*metadata*/){});
Logger::RemoveCustomSink("CustomSink"); Logger::RemoveCustomSink("CustomSink");
Logger::RemoveCustomSink("bla"); Logger::RemoveCustomSink("bla");