From d2941d335ea840d8656d9a222c84c478b855f8a3 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 11 Apr 2019 12:11:03 +0200 Subject: [PATCH] [libcalamares] Reduce unused-parameter warnings - The tag-class "parameters" are empty anyway --- src/libcalamares/utils/Logger.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libcalamares/utils/Logger.cpp b/src/libcalamares/utils/Logger.cpp index 31dd44978..3061e0a5e 100644 --- a/src/libcalamares/utils/Logger.cpp +++ b/src/libcalamares/utils/Logger.cpp @@ -193,28 +193,28 @@ static const char continuation[] = "\n "; static const char subentry[] = " .. "; QDebug& -operator<<( QDebug& s, Continuation c ) +operator<<( QDebug& s, Continuation ) { s << continuation; return s; } QDebug& -operator<<( QDebug& s, SubEntry l ) +operator<<( QDebug& s, SubEntry ) { s << subentry; return s; } CDebug& -operator<<( CDebug&& s, Continuation c ) +operator<<( CDebug&& s, Continuation ) { s << continuation; return s; } CDebug& -operator<<( CDebug&& s, SubEntry l ) +operator<<( CDebug&& s, SubEntry ) { s << subentry; return s;