From 286dbbb54ba7b2954f1b1a15cb997e8142d75c8e Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 16 Mar 2017 11:14:43 +0900 Subject: Fixed warnings about a static lambda defined but unused --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.h b/util.h index c1f8cebb..edac878f 100644 --- a/util.h +++ b/util.h @@ -41,7 +41,7 @@ namespace QMatrixClient * * @example qDebug() << formatJson << json_object; // (QJsonObject, etc.) */ - static QDebugManip formatJson = [](QDebug debug_object) { + const QDebugManip formatJson = [](QDebug debug_object) { #if QT_VERSION < QT_VERSION_CHECK(5, 4, 0) return debug_object; #else -- cgit v1.2.3