diff options
Diffstat (limited to 'src/binary-reader-logging.cc')
-rw-r--r-- | src/binary-reader-logging.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc index c843639e..335b24c1 100644 --- a/src/binary-reader-logging.cc +++ b/src/binary-reader-logging.cc @@ -573,6 +573,10 @@ Result BinaryReaderLogging::OnOpcodeBare() { return reader->OnOpcodeBare(); } +Result BinaryReaderLogging::OnOpcodeIndex(Index value) { + return reader->OnOpcodeIndex(value); +} + Result BinaryReaderLogging::OnOpcodeUint32(uint32_t value) { return reader->OnOpcodeUint32(value); } |