diff options
Diffstat (limited to 'src/gui/models/namesmodel.h')
-rw-r--r-- | src/gui/models/namesmodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/namesmodel.h b/src/gui/models/namesmodel.h index 63af17db6..f0362233d 100644 --- a/src/gui/models/namesmodel.h +++ b/src/gui/models/namesmodel.h @@ -40,10 +40,10 @@ class NamesModel notfinal : public ListModel std::string getElementAt(int i) override final A_WARN_UNUSED; - StringVect &getNames() A_WARN_UNUSED + StringVect &getNames() noexcept2 A_WARN_UNUSED { return mNames; } - size_t size() const A_WARN_UNUSED + size_t size() const noexcept2 A_WARN_UNUSED { return mNames.size(); } void clear() |