| 461 | |
| 462 | |
| 463 | bool GetOp(iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet) |
| 464 | { |
| 465 | // Wrapper so it can be called with either iterator or const_iterator |
| 466 | const_iterator pc2 = pc; |
| 467 | bool fRet = GetOp2(pc2, opcodeRet, &vchRet); |
| 468 | pc = begin() + (pc2 - begin()); |
| 469 | return fRet; |
| 470 | } |
| 471 | |
| 472 | bool GetOp(iterator& pc, opcodetype& opcodeRet) |
| 473 | { |
no outgoing calls
no test coverage detected