diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-16 14:20:26 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-02-16 14:20:26 +0000 |
commit | b8ddecf41c8938136b3f4a081e1b8a98584c2401 (patch) | |
tree | 6813f5fbf3e5ad4f0e8e0d49eb9c9d4d0cfe3003 /libmysqlpp/my-error.h | |
parent | Basic clang tidy fixes (diff) | |
download | libdbpp-mysql-b8ddecf41c8938136b3f4a081e1b8a98584c2401.tar.bz2 libdbpp-mysql-b8ddecf41c8938136b3f4a081e1b8a98584c2401.tar.xz libdbpp-mysql-b8ddecf41c8938136b3f4a081e1b8a98584c2401.zip |
Modernize clang tidy fixes
Diffstat (limited to 'libmysqlpp/my-error.h')
-rw-r--r-- | libmysqlpp/my-error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqlpp/my-error.h b/libmysqlpp/my-error.h index b694843..d1dbe68 100644 --- a/libmysqlpp/my-error.h +++ b/libmysqlpp/my-error.h @@ -10,7 +10,7 @@ namespace MySQL { public: Error(MYSQL_STMT *); Error(MYSQL *); - std::string message() const throw() override; + std::string message() const noexcept override; private: std::string msg; |