File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -902,11 +902,12 @@ namespace Jrd
902902
903903#ifdef DEV_BUILD
904904 FB_SIZE_T dummy;
905- bool rc = dbb_del_pages.findEx ([relation](const DelPagesMarker& item)->int
905+ bool rc = dbb_del_pages.findEx (
906+ [relation](const DelPagesMarker& item) -> int
906907 {
907908 return std::greater{}(item.relation , relation);
908909 },
909- dummy);
910+ dummy);
910911 fb_assert (!rc);
911912#endif
912913
@@ -918,11 +919,12 @@ namespace Jrd
918919 MutexLockGuard guard (dbb_del_pages_mutex, FB_FUNCTION);
919920
920921 FB_SIZE_T pos;
921- bool found = dbb_del_pages.findEx ([relation](const DelPagesMarker& item)->int
922+ bool found = dbb_del_pages.findEx (
923+ [relation](const DelPagesMarker& item) -> int
922924 {
923925 return std::greater{}(item.relation , relation);
924926 },
925- pos);
927+ pos);
926928 fb_assert (found);
927929
928930 if (found)
You can’t perform that action at this time.
0 commit comments