diff options
author | lloyd <[email protected]> | 2012-06-12 13:51:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-12 13:51:33 +0000 |
commit | f685eeb99f800a4312d227b94adf036d395dc651 (patch) | |
tree | e626d9878d79d9a0a8becbd5d43e2fa658f6ad08 /src/cert | |
parent | aa5d1f93c077f1c80ba06c3055671136f79f74e7 (diff) |
Update what() signature on exception types
Diffstat (limited to 'src/cert')
-rw-r--r-- | src/cert/x509/x509path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/x509/x509path.cpp b/src/cert/x509/x509path.cpp index 9b2b3227f..66ba142d0 100644 --- a/src/cert/x509/x509path.cpp +++ b/src/cert/x509/x509path.cpp @@ -24,7 +24,7 @@ class PKIX_Validation_Failure : public std::exception Path_Validation_Result::Code code() const { return m_code; } - const char* what() { return "PKIX validation failed"; } + const char* what() const noexcept { return "PKIX validation failed"; } private: Path_Validation_Result::Code m_code; }; |