Browse Source

Get rid of operator precedence warning.

cl-refactor
Eric Lombrozo 11 years ago
parent
commit
92200adeb3
  1. 2
      libethereum/Common.h

2
libethereum/Common.h

@ -155,7 +155,7 @@ public:
{ {
size_t h = 0; size_t h = 0;
for (auto i: value.m_data) for (auto i: value.m_data)
h = (h << 5 - h) + i; h = (h << (5 - h)) + i;
return h; return h;
} }
}; };

Loading…
Cancel
Save