Browse Source

Missing part of previous commit.

cl-refactor
Tim Hughes 10 years ago
parent
commit
3c3bde3ef8
  1. 4
      libdevcore/RLP.h

4
libdevcore/RLP.h

@ -212,8 +212,8 @@ public:
std::pair<T, U> ret;
if (isList())
{
ret.first = (*this)[0].operator T();
ret.second = (*this)[1].operator U();
ret.first = (T)(*this)[0];
ret.second = (U)(*this)[1];
}
return ret;
}

Loading…
Cancel
Save