aboutsummaryrefslogtreecommitdiff
path: root/lib/qt_connection_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/qt_connection_util.h')
-rw-r--r--lib/qt_connection_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qt_connection_util.h b/lib/qt_connection_util.h
index 04dc6b27..699735d4 100644
--- a/lib/qt_connection_util.h
+++ b/lib/qt_connection_util.h
@@ -46,7 +46,7 @@ namespace _impl {
// arguments are always copied (at best - COWed) to the context of
// the slot. Therefore the slot decorator receives const ArgTs&...
// rather than ArgTs&&...
- // TODO: std::bind_front() instead of lambda.
+ // TODO (C++20): std::bind_front() instead of lambda.
c = QObject::connect(sender, signal, context,
[pc = std::move(pc),
decoratedSlot = std::move(decoratedSlot)](const ArgTs&... args) {