mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Don't use identifiers starting with an underscore followed by an uppercase letter
This commit is contained in:
@@ -179,8 +179,8 @@ public:
|
||||
return _padLeft ? padding + _value : _value + padding;
|
||||
}
|
||||
static bytes encode(std::string const& _value) { return encode(util::asBytes(_value), false); }
|
||||
template <class _T>
|
||||
static bytes encode(std::vector<_T> const& _value)
|
||||
template <class T>
|
||||
static bytes encode(std::vector<T> const& _value)
|
||||
{
|
||||
bytes ret;
|
||||
for (auto const& v: _value)
|
||||
|
||||
Reference in New Issue
Block a user