From 9b1c3e53964a7c5afe704c57dbd656e4cfe801d1 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sun, 20 Jan 2019 23:12:15 -0800 Subject: [PATCH] Qt: Actually fix clang build --- src/platform/qt/LogConfigModel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/qt/LogConfigModel.h b/src/platform/qt/LogConfigModel.h index c4f5dd9a7..bcd668427 100644 --- a/src/platform/qt/LogConfigModel.h +++ b/src/platform/qt/LogConfigModel.h @@ -43,7 +43,7 @@ private: const char* id; int levels; - bool operator<(const ConfigSetting& other) { + bool operator<(const ConfigSetting& other) const { return name < other.name; } }; @@ -54,4 +54,4 @@ private: int m_levels; }; -} \ No newline at end of file +}