From 155ee2bbd7ef645d82aada3df7b4ef817ea0a5f8 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Tue, 20 Oct 2020 18:23:46 +0200 Subject: QList/QVLA: default the parameter for indexOf/contains/remove/etc. This allows to use list-initialization when calling these functions, for instance list.removeAll({}). Change-Id: I2828d900a44bd0bc5aea5fba4777304b09190bc9 Reviewed-by: Thiago Macieira --- src/corelib/tools/qlist.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/corelib/tools/qlist.h') diff --git a/src/corelib/tools/qlist.h b/src/corelib/tools/qlist.h index 38cc0ed348..40ee923cd4 100644 --- a/src/corelib/tools/qlist.h +++ b/src/corelib/tools/qlist.h @@ -68,12 +68,12 @@ protected: const Self *self() const { return static_cast(this); } public: - template + template qsizetype indexOf(const AT &t, qsizetype from = 0) const noexcept; - template + template qsizetype lastIndexOf(const AT &t, qsizetype from = -1) const noexcept; - template + template bool contains(const AT &t) const noexcept { return self()->indexOf(t) != -1; @@ -360,7 +360,7 @@ public: // QList compatibility void removeAt(qsizetype i) { remove(i); } - template + template qsizetype removeAll(const AT &t) { const const_iterator ce = this->cend(), cit = std::find(this->cbegin(), ce, t); @@ -381,7 +381,7 @@ public: erase(it, e); return result; } - template + template bool removeOne(const AT &t) { const qsizetype i = indexOf(t); -- cgit v1.2.3