aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/exceptn.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-10 19:19:19 -0400
committerJack Lloyd <[email protected]>2018-10-01 12:53:53 -0400
commit8eb900731da945d276f723534af09592213ee582 (patch)
treed080c6fd2ca760796b522d21288b0b4bfc0b6e65 /src/lib/utils/exceptn.h
parenta792728e8941b62761052f5e0d288ba13a016c77 (diff)
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'src/lib/utils/exceptn.h')
-rw-r--r--src/lib/utils/exceptn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/exceptn.h b/src/lib/utils/exceptn.h
index efa52580c..dfe428d72 100644
--- a/src/lib/utils/exceptn.h
+++ b/src/lib/utils/exceptn.h
@@ -22,7 +22,7 @@ class BOTAN_PUBLIC_API(2,0) Exception : public std::exception
public:
Exception(const char* prefix, const std::string& msg);
explicit Exception(const std::string& msg);
- const char* what() const BOTAN_NOEXCEPT override { return m_msg.c_str(); }
+ const char* what() const noexcept override { return m_msg.c_str(); }
protected:
Exception(const std::string& msg, const std::exception& e);
private: