From a8ee7269bc293fd8c3269388ed92f701d57254a7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 24 Apr 2019 14:24:21 +0200 Subject: [PATCH] fs/Config: add `noexcept` --- src/fs/Config.cxx | 2 +- src/fs/Config.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fs/Config.cxx b/src/fs/Config.cxx index 2ff6e7af9..f2a9716e1 100644 --- a/src/fs/Config.cxx +++ b/src/fs/Config.cxx @@ -35,7 +35,7 @@ ConfigureFS(const ConfigData &config) } void -DeinitFS() +DeinitFS() noexcept { #ifdef HAVE_FS_CHARSET DeinitFSCharset(); diff --git a/src/fs/Config.hxx b/src/fs/Config.hxx index 3b4887545..bbb29fb69 100644 --- a/src/fs/Config.hxx +++ b/src/fs/Config.hxx @@ -31,6 +31,6 @@ void ConfigureFS(const ConfigData &config); void -DeinitFS(); +DeinitFS() noexcept; #endif