summaryrefslogtreecommitdiff
path: root/src/fs/Glob.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-06-03 21:33:44 +0200
committerMax Kellermann <max@musicpd.org>2017-06-04 12:46:48 +0200
commita057b4f6d88f7bfc1d9846e14de5617a4c281c0d (patch)
tree88c49e29042c500104827ac3d6e64bd447e1b4bf /src/fs/Glob.hxx
parent62b03cfddf74c25d0b8187ce5e56d31ef49667b7 (diff)
*: add lost of "noexcept" specifications
Diffstat (limited to 'src/fs/Glob.hxx')
-rw-r--r--src/fs/Glob.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/Glob.hxx b/src/fs/Glob.hxx
index 714eaa753..1f8402089 100644
--- a/src/fs/Glob.hxx
+++ b/src/fs/Glob.hxx
@@ -54,7 +54,7 @@ public:
#endif
gcc_pure
- bool Check(const char *name_fs) const {
+ bool Check(const char *name_fs) const noexcept {
#ifdef HAVE_FNMATCH
return fnmatch(pattern.c_str(), name_fs, 0) == 0;
#elif defined(WIN32)