QSlotObjectBase: remove misleading comment
authorMarc Mutz <marc.mutz@kdab.com>
Mon, 20 Aug 2012 13:17:54 +0000 (15:17 +0200)
committerQt by Nokia <qt-info@nokia.com>
Sun, 26 Aug 2012 12:34:01 +0000 (14:34 +0200)
These constructors might not benefit from being constexpr (as the objects are
only created on the heap), so don't suggest so. There's no disadvantage of them
begin constexpr, but their constexpr'ability depends on whether QAtomic has
a constexpr constructor, and the added complexity of finding that out isn't
worth it.

Change-Id: I089a29dcb98ba935c339dce09d71f283522a9afd
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Olivier Goffart <ogoffart@woboq.com>
src/corelib/kernel/qobject_impl.h

index f5187c8..3586b1c 100644 (file)
@@ -116,7 +116,7 @@ namespace QtPrivate {
         typedef void (*ImplFn)(int which, QSlotObjectBase* this_, QObject *receiver, void **args, bool *ret);
         const ImplFn impl;
 
-        explicit QSlotObjectBase(ImplFn fn) : ref(1), impl(fn) {} // ### make constexpr once QAtomicInt's ctor is, too
+        explicit QSlotObjectBase(ImplFn fn) : ref(1), impl(fn) {}
         inline void destroy()                   { impl(Destroy, this, 0, 0, 0); }
         inline bool compare(void **a) { bool ret; impl(Compare, this, 0, a, &ret); return ret; }
         inline void call(QObject *r, void **a)  { impl(Call,    this, r, a, 0); }