aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-03-16 11:14:43 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-03-16 11:14:43 +0900
commit286dbbb54ba7b2954f1b1a15cb997e8142d75c8e (patch)
tree8c111897e6f9ef9692bfc3d41df29340c44da8a1
parent593e572216cdf6d3fb7bf55a7d71b04344074b3a (diff)
downloadlibquotient-286dbbb54ba7b2954f1b1a15cb997e8142d75c8e.tar.gz
libquotient-286dbbb54ba7b2954f1b1a15cb997e8142d75c8e.zip
Fixed warnings about a static lambda defined but unused
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
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