From 0a80e38c1b425322d96dc662c6d47e3ca5fc2c86 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 30 Jan 2018 16:49:05 +0900 Subject: Fix compilation with Clang Did two QChar::isDigit() overloads, one static and one member, confuse it? --- user.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.cpp b/user.cpp index 7217413b..b07cf688 100644 --- a/user.cpp +++ b/user.cpp @@ -72,7 +72,7 @@ bool User::isGuest() const { Q_ASSERT(!d->userId.isEmpty() && d->userId.startsWith('@')); auto it = std::find_if_not(d->userId.begin() + 1, d->userId.end(), - std::mem_fn(&QChar::isDigit)); + [] (QChar c) { return c.isDigit(); }); Q_ASSERT(it == d->userId.end()); return *it == ':'; } -- cgit v1.2.3