diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-22 21:37:42 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-22 21:44:17 +0200 |
commit | c75ef102c4b24c89f28a4773d7758adcbf4b6846 (patch) | |
tree | 293e21f7dc870ec2476568dafb04534de681974a /lib/qt_connection_util.h | |
parent | 8fa7dae82ac8e49b2a965377a663aedd08a5230b (diff) | |
download | libquotient-c75ef102c4b24c89f28a4773d7758adcbf4b6846.tar.gz libquotient-c75ef102c4b24c89f28a4773d7758adcbf4b6846.zip |
Cleanup and some extra comments
Diffstat (limited to 'lib/qt_connection_util.h')
-rw-r--r-- | lib/qt_connection_util.h | 2 |
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) { |