fs/Config: add `noexcept`

This commit is contained in:
Max Kellermann 2019-04-24 14:24:21 +02:00
parent 7c1843ee2e
commit a8ee7269bc
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ ConfigureFS(const ConfigData &config)
}
void
DeinitFS()
DeinitFS() noexcept
{
#ifdef HAVE_FS_CHARSET
DeinitFSCharset();

View File

@ -31,6 +31,6 @@ void
ConfigureFS(const ConfigData &config);
void
DeinitFS();
DeinitFS() noexcept;
#endif