diff options
Diffstat (limited to 'src/db/update/ExcludeList.hxx')
-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 } |