Commit 0b41faec authored by Max Kellermann's avatar Max Kellermann

db/update/ExcludeList: remove obsolete TODO comments

parent e12bd00b
......@@ -74,7 +74,7 @@ ExcludeList::LoadFile(Path path_fs)
patterns.emplace_front(p);
}
#else
// TODO: implement
/* not implemented */
(void)path_fs;
#endif
......@@ -93,7 +93,7 @@ ExcludeList::Check(Path name_fs) const
if (i.Check(NarrowPath(name_fs).c_str()))
return true;
#else
// TODO: implement
/* not implemented */
(void)name_fs;
#endif
......
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment