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

@@ -44,7 +44,7 @@ public:
bitString_.SetHex (v);
}
STBitString (SField::ref n, const std::string& v) : SerializedType (n)
STBitString (SField::ref n, std::string const& v) : SerializedType (n)
{
bitString_.SetHex (v);
}