Remove using namespace beast in base_uint.h

This commit is contained in:
Joe Loser
2018-07-13 21:08:20 -04:00
committed by Nik Bougalis
parent 79d819584f
commit 70d9d88cda
62 changed files with 206 additions and 196 deletions

View File

@@ -413,7 +413,7 @@ DirectIPaymentStep::check (
if (((*sleSrc)[sfFlags] & lsfRequireAuth) &&
!((*sleLine)[sfFlags] & authField) &&
(*sleLine)[sfBalance] == zero)
(*sleLine)[sfBalance] == beast::zero)
{
JLOG (j_.warn())
<< "DirectStepI: can't receive IOUs from issuer without auth."
@@ -437,7 +437,7 @@ DirectIPaymentStep::check (
{
auto const owed = creditBalance (ctx.view, dst_, src_, currency_);
if (owed <= zero)
if (owed <= beast::zero)
{
auto const limit = creditLimit (ctx.view, dst_, src_, currency_);
if (-owed >= limit)