HandlerFeedGenerator: Fix comparator condition

このコミットが含まれているのは:
Albert S. 2022-04-03 12:07:43 +02:00
コミット 63a4437de7
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -11,7 +11,7 @@ std::vector<HandlerFeedGenerator::EntryRevisionPair> HandlerFeedGenerator::fetch
option.includeInvisible = false;
// option.limit = 20;
auto comppage = [](const Page &a, const Page &b) { return a.name == b.name; };
auto comppage = [](const Page &a, const Page &b) { return a.name < b.name; };
std::set<Page, decltype(comppage)> members (comppage);
if(categories.empty())
{