db/update/ExcludeList: remove obsolete TODO comments
This commit is contained in:
parent
e12bd00b47
commit
0b41faec89
@ -74,7 +74,7 @@ ExcludeList::LoadFile(Path path_fs)
|
|||||||
patterns.emplace_front(p);
|
patterns.emplace_front(p);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
// TODO: implement
|
/* not implemented */
|
||||||
(void)path_fs;
|
(void)path_fs;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -93,7 +93,7 @@ ExcludeList::Check(Path name_fs) const
|
|||||||
if (i.Check(NarrowPath(name_fs).c_str()))
|
if (i.Check(NarrowPath(name_fs).c_str()))
|
||||||
return true;
|
return true;
|
||||||
#else
|
#else
|
||||||
// TODO: implement
|
/* not implemented */
|
||||||
(void)name_fs;
|
(void)name_fs;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -38,8 +38,6 @@ class Path;
|
|||||||
class ExcludeList {
|
class ExcludeList {
|
||||||
#ifdef HAVE_CLASS_GLOB
|
#ifdef HAVE_CLASS_GLOB
|
||||||
std::forward_list<Glob> patterns;
|
std::forward_list<Glob> patterns;
|
||||||
#else
|
|
||||||
// TODO: implement
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -48,7 +46,7 @@ public:
|
|||||||
#ifdef HAVE_CLASS_GLOB
|
#ifdef HAVE_CLASS_GLOB
|
||||||
return patterns.empty();
|
return patterns.empty();
|
||||||
#else
|
#else
|
||||||
// TODO: implement
|
/* not implemented */
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user