We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0592438 commit 9ffef0cCopy full SHA for 9ffef0c
1 file changed
src/jrd/Database.cpp
@@ -970,7 +970,7 @@ namespace Jrd
970
bool rc = dbb_del_pages.findEx(
971
[relation](const DelPagesMarker& item) -> int
972
{
973
- return std::greater{}(item.relation, relation);
+ return item.relation == relation ? 0 : 1;
974
},
975
dummy);
976
fb_assert(!rc);
@@ -987,7 +987,7 @@ namespace Jrd
987
bool found = dbb_del_pages.findEx(
988
989
990
991
992
pos);
993
0 commit comments