summaryrefslogtreecommitdiff
path: root/libdbpp/selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-02-16 14:21:28 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2019-02-16 14:21:28 +0000
commit463dd49304a47b835d1818d7489fe7ba373890ac (patch)
tree6375ec8634cebb237ade975eb802b4221f569afd /libdbpp/selectcommand.h
parentMore clang tidy fixes (diff)
downloadlibdbpp-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.h6
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.