clang-format

This commit is contained in:
tequ
2025-03-05 23:28:30 +09:00
parent f588352529
commit 8dbbdc0db3
2 changed files with 5 additions and 3 deletions

View File

@@ -1319,12 +1319,14 @@ SetHook::setHook()
}
else if (op == hsoNSDELETE && newDirKeylet)
{
JLOG(ctx.j.trace()) << "Marking a namespace for destruction.... NSDELETE";
JLOG(ctx.j.trace())
<< "Marking a namespace for destruction.... NSDELETE";
namespacesToDestroy.emplace(*newNamespace);
}
else if (oldDirKeylet)
{
JLOG(ctx.j.trace()) << "Marking a namespace for destruction.... non-NSDELETE";
JLOG(ctx.j.trace())
<< "Marking a namespace for destruction.... non-NSDELETE";
namespacesToDestroy.emplace(*oldNamespace);
}
else

View File

@@ -950,7 +950,7 @@ public:
BEAST_EXPECT((*env.le(alice))[sfOwnerCount] == (fixNS ? 1 : 2));
BEAST_EXPECT(!(env.le("alice")->isFieldPresent(sfHookStateCount)));
}
// check ExtendedHookState
if (env.current()->rules().enabled(featureExtendedHookState))
{