Skip to content

Commit b6ccc27

Browse files
committed
Improve style
1 parent 479f7f1 commit b6ccc27

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/jrd/Database.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)