Fix shadowing variables

This commit is contained in:
seelabs
2019-08-13 14:26:02 -07:00
parent 014df67fed
commit b9e73b4852
55 changed files with 460 additions and 444 deletions

View File

@@ -299,9 +299,9 @@ public:
env.app().getJobQueue().rendezvous();
BEAST_EXPECT(wsc->findMsg(5s,
[&](auto const& jv)
[&](auto const& jval)
{
return jv[jss::type] == "ledgerClosed";
return jval[jss::type] == "ledgerClosed";
}));
}
@@ -356,9 +356,9 @@ public:
env.app().getJobQueue().rendezvous();
BEAST_EXPECT(wsc->findMsg(5s,
[&](auto const& jv)
[&](auto const& jval)
{
return jv[jss::type] == "ledgerClosed";
return jval[jss::type] == "ledgerClosed";
}));
}