diff options
author | Max Kellermann <max@duempel.org> | 2015-06-22 21:14:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-06-22 22:12:08 +0200 |
commit | 0b41faec89de28a122d8a68a62b89b3bee31d9f1 (patch) | |
tree | cf2d41146709b83985eae7a81cd41510b2b97575 /src/db/update/ExcludeList.hxx | |
parent | e12bd00b474fd2e748067eee2e3289a060097b43 (diff) | |
download | mpd-0b41faec89de28a122d8a68a62b89b3bee31d9f1.tar.gz mpd-0b41faec89de28a122d8a68a62b89b3bee31d9f1.tar.xz mpd-0b41faec89de28a122d8a68a62b89b3bee31d9f1.zip |
db/update/ExcludeList: remove obsolete TODO comments
Diffstat (limited to '')
-rw-r--r-- | src/db/update/ExcludeList.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/db/update/ExcludeList.hxx b/src/db/update/ExcludeList.hxx index eae0cac40..de48bac99 100644 --- a/src/db/update/ExcludeList.hxx +++ b/src/db/update/ExcludeList.hxx @@ -38,8 +38,6 @@ class Path; class ExcludeList { #ifdef HAVE_CLASS_GLOB std::forward_list<Glob> patterns; -#else - // TODO: implement #endif public: @@ -48,7 +46,7 @@ public: #ifdef HAVE_CLASS_GLOB return patterns.empty(); #else - // TODO: implement + /* not implemented */ return true; #endif } |