diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-03 00:09:09 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-16 07:48:20 +0100 |
commit | 545071e998806235442edda5f575ee61e836abe9 (patch) | |
tree | 45579d717361f24c6f4a06354f5836447e691771 /options/base-value.hpp | |
parent | 4766be01022d6de50f7b42647299860c2d9909b8 (diff) |
cruft
Diffstat (limited to 'options/base-value.hpp')
-rw-r--r-- | options/base-value.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/base-value.hpp b/options/base-value.hpp index 7baff0b3..11d17c00 100644 --- a/options/base-value.hpp +++ b/options/base-value.hpp @@ -31,7 +31,7 @@ class OTR_OPTIONS_EXPORT value_ : public QObject public: QString name() const { return self_name; } - value_(bundle const& b, const QString& name); + value_(bundle const& b, const QString& name) noexcept; ~value_() override; // no C++17 "constexpr inline" for data declarations in MSVC @@ -63,7 +63,7 @@ protected: bundle b; QString self_name; - virtual void store_variant(const QVariant& x) = 0; + virtual void store_variant(const QVariant& x) noexcept = 0; template<typename t> void store_(const t& datum) |