diff options
author | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:06:19 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-03-01 05:06:19 +0000 |
commit | a8724b5f03adc05355c52fb7c75c9f1b6136348d (patch) | |
tree | 85f6924f1ffa0ad6b54bf8bf1c5202a1e1a07d99 /include/config.h | |
parent | b7e85f5161104d203a09494070336febdfbd2909 (diff) |
Use noexcept instead of an empty exception specifier.
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h index 4acd32f09..8b8cb65ca 100644 --- a/include/config.h +++ b/include/config.h @@ -177,7 +177,7 @@ class ConfigException : public CoreException * Actually no, it does nothing. Never mind. * @throws Nothing! */ - virtual ~ConfigException() throw() = default; + virtual ~ConfigException() noexcept = default; }; extern Configuration::File ServicesConf; |