Don't use identifiers starting with an underscore followed by an uppercase letter

This commit is contained in:
Jason Cobb
2020-02-17 12:44:39 -05:00
parent 2d1c4b770f
commit 6db0d50094
14 changed files with 74 additions and 74 deletions
+2 -2
View File
@@ -30,9 +30,9 @@ using namespace solidity::util;
namespace
{
static constexpr uint64_t compileTimeLiteralHash(char const* _literal, size_t _N)
static constexpr uint64_t compileTimeLiteralHash(char const* _literal, size_t _n)
{
return (_N == 0) ? BlockHasher::fnvEmptyHash : (static_cast<uint64_t>(_literal[0]) * BlockHasher::fnvPrime) ^ compileTimeLiteralHash(_literal + 1, _N - 1);
return (_n == 0) ? BlockHasher::fnvEmptyHash : (static_cast<uint64_t>(_literal[0]) * BlockHasher::fnvPrime) ^ compileTimeLiteralHash(_literal + 1, _n - 1);
}
template<size_t N>