diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-02 00:26:14 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-02 00:26:14 +0100 |
commit | 19d2b71aa8f385fee0c4cd3aa9fdf4f2f3279749 (patch) | |
tree | 632d75ea7d1663ff003a312989704e1d2fc6e8df /options/group.hpp | |
parent | f5ce4029d6f5c0659eba8dedbd5238527867460b (diff) |
options: consistently use rvalue references
Diffstat (limited to 'options/group.hpp')
-rw-r--r-- | options/group.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/options/group.hpp b/options/group.hpp index 45e9353c..93299b6e 100644 --- a/options/group.hpp +++ b/options/group.hpp @@ -29,6 +29,7 @@ namespace options::detail { explicit group(const QString& name); void save() const; void put(const QString& s, const QVariant& d); + void put(const QString& s, QVariant&& d); bool contains(const QString& s) const; never_inline QVariant get_variant(const QString& name) const; |