Browse Source

Fixed cast warning causing 64-bit Windows vcproj build stop."

cl-refactor
SharpCoiner 11 years ago
parent
commit
acfe1a1694
  1. 2
      libethereum/Instruction.cpp

2
libethereum/Instruction.cpp

@ -507,7 +507,7 @@ static int compileLispFragment(char const*& d, char const* e, bool _quiet, u256s
break;
}
unsigned datan = codes.size() - 3;
unsigned datan = (unsigned)codes.size() - 3;
unsigned i = 0;
for (auto it = codes.rbegin(); it != codes.rend(); ++it, ++i)
{

Loading…
Cancel
Save