aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 19:29:37 +0200
committerDaniel Seither <[email protected]>2015-07-30 19:29:37 +0200
commit9d0d6b281b18962445e6fc1be24cafd5ecc0ca40 (patch)
tree239c2a927532c83679aaa0611a782aaf4fe4b097
parent5287f673ed80715d74f9fd75f24aa4e46a19349c (diff)
utils: Add missing overrides
-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 06db697bf..23ac01cff 100644
--- a/src/lib/utils/exceptn.h
+++ b/src/lib/utils/exceptn.h
@@ -180,7 +180,7 @@ struct BOTAN_DLL Self_Test_Failure : public Internal_Error
*/
struct BOTAN_DLL Memory_Exhaustion : public std::bad_alloc
{
- const char* what() const BOTAN_NOEXCEPT
+ const char* what() const BOTAN_NOEXCEPT override
{ return "Ran out of memory, allocation failed"; }
};