| 24 | class CScriptView : public ranges::subrange<const unsigned char *> { |
| 25 | public: |
| 26 | CScriptView() : ranges::subrange<const unsigned char *>() {} |
| 27 | CScriptView(const unsigned char* pbegin, const unsigned char* pend) : ranges::subrange<const unsigned char *>(pbegin, pend) {} |
| 28 | |
| 29 | bool GetOp(iterator& pc, opcodetype& opcodeRet, ranges::subrange<const unsigned char *>& vchRet) const |
nothing calls this directly
no outgoing calls
no test coverage detected