diff options
Diffstat (limited to 'libpqpp/pq-error.cpp')
-rw-r--r-- | libpqpp/pq-error.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpqpp/pq-error.cpp b/libpqpp/pq-error.cpp index 3a16185..964d66b 100644 --- a/libpqpp/pq-error.cpp +++ b/libpqpp/pq-error.cpp @@ -1,5 +1,4 @@ #include "pq-error.h" -#include <string.h> PQ::Error::Error(const PGconn * conn) : msg(PQerrorMessage(conn)) @@ -7,7 +6,7 @@ PQ::Error::Error(const PGconn * conn) : } std::string -PQ::Error::message() const throw() +PQ::Error::message() const noexcept { return msg; } |