1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Resolve analyser warning re: unnecessary update.

This commit is contained in:
Thomas Harte
2025-12-11 17:57:44 -05:00
parent fd33ee0e09
commit 378321d6f2
+1 -1
View File
@@ -258,7 +258,7 @@ std::pair<int, InstructionSet::M50740::Instruction> Decoder::decode(const uint8_
const int bytes_to_consume = std::min(int(end - source), outstanding_bytes);
consumed_ += bytes_to_consume;
source += bytes_to_consume;
/* source += bytes_to_consume; */
operand_bytes_ += bytes_to_consume;
if(operand_size_ == operand_bytes_) {