| 533 | |
| 534 | |
| 535 | bool GetOp(iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet) |
| 536 | { |
| 537 | // Wrapper so it can be called with either iterator or const_iterator |
| 538 | const_iterator pc2 = pc; |
| 539 | bool fRet = GetOp2(pc2, opcodeRet, &vchRet); |
| 540 | pc = begin() + (pc2 - begin()); |
| 541 | return fRet; |
| 542 | } |
| 543 | |
| 544 | bool GetOp(iterator& pc, opcodetype& opcodeRet) |
| 545 | { |
no test coverage detected