diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-03-16 11:14:43 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-03-16 11:14:43 +0900 |
commit | 286dbbb54ba7b2954f1b1a15cb997e8142d75c8e (patch) | |
tree | 8c111897e6f9ef9692bfc3d41df29340c44da8a1 | |
parent | 593e572216cdf6d3fb7bf55a7d71b04344074b3a (diff) | |
download | libquotient-286dbbb54ba7b2954f1b1a15cb997e8142d75c8e.tar.gz libquotient-286dbbb54ba7b2954f1b1a15cb997e8142d75c8e.zip |
Fixed warnings about a static lambda defined but unused
-rw-r--r-- | util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |