diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-16 14:21:28 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-16 14:21:28 +0000 |
commit | 463dd49304a47b835d1818d7489fe7ba373890ac (patch) | |
tree | 6375ec8634cebb237ade975eb802b4221f569afd /libdbpp/selectcommand.h | |
parent | More clang tidy fixes (diff) | |
download | libdbpp-463dd49304a47b835d1818d7489fe7ba373890ac.tar.bz2 libdbpp-463dd49304a47b835d1818d7489fe7ba373890ac.tar.xz libdbpp-463dd49304a47b835d1818d7489fe7ba373890ac.zip |
Modernize clang tidy fixes
Diffstat (limited to 'libdbpp/selectcommand.h')
-rw-r--r-- | libdbpp/selectcommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdbpp/selectcommand.h b/libdbpp/selectcommand.h index 2fb9253..871b332 100644 --- a/libdbpp/selectcommand.h +++ b/libdbpp/selectcommand.h @@ -83,7 +83,7 @@ namespace DB { const unsigned int colNo; private: - std::string message() const throw() override; + std::string message() const noexcept override; }; /// Exception thrown when the requested column does not exist in the result set. @@ -91,13 +91,13 @@ namespace DB { public: /// New ColumnDoesNotExist exception /// @param n Name requested - ColumnDoesNotExist(const Glib::ustring & n); + ColumnDoesNotExist(Glib::ustring n); /// Name requested const Glib::ustring colName; private: - std::string message() const throw() override; + std::string message() const noexcept override; }; /// Represents a command expected to return data to the client. |