mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-19 19:16:34 +00:00
Eliminate unused variable (at least temporarily).
This commit is contained in:
@@ -87,7 +87,7 @@ std::optional<BASICAnalysis> analyse(const File &file) {
|
||||
}
|
||||
|
||||
uint16_t line_address = file.starting_address;
|
||||
int previous_line_number = -1;
|
||||
// int previous_line_number = -1;
|
||||
|
||||
const auto byte = [&](uint16_t address) {
|
||||
return file.data[address - file.starting_address];
|
||||
@@ -153,7 +153,7 @@ std::optional<BASICAnalysis> analyse(const File &file) {
|
||||
break;
|
||||
}
|
||||
|
||||
previous_line_number = line_number;
|
||||
// previous_line_number = line_number;
|
||||
line_address = next_line_address;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user