diff options
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r-- | src/binary-reader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 0c399461..0e0b894a 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -1719,7 +1719,7 @@ Result BinaryReader::ReadInstructions(bool stop_on_end, case Opcode::DataDrop: ERROR_IF(data_count_ == kInvalidIndex, "data.drop requires data count section"); - // Fallthrough. + [[fallthrough]]; case Opcode::ElemDrop: { Index segment; CHECK_RESULT(ReadIndex(&segment, "segment index")); |