Replace const Type& with Type const& for common types.

* std::string
* RippleAccount
* Account
* Currency
* uint256
* STAmount
* Json::Value
This commit is contained in:
Tom Ritchford
2014-08-03 19:17:56 -04:00
committed by Vinnie Falco
parent f5afe0587f
commit 648ccc7c17
143 changed files with 748 additions and 754 deletions

View File

@@ -42,7 +42,7 @@ struct Key
}
// Constructor for Admin keys
Key (Kind k, const std::string& n)
Key (Kind k, std::string const& n)
: kind(k)
, address()
, name(n)