mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-13 15:25:56 +00:00
Resolves one further GCC warning.
Technically this leaves one further, on a temporary printf I have in my IIgs. I'll fix that when I strip all this caveman stufff.
This commit is contained in:
@@ -152,9 +152,8 @@ struct CPU::WDC65816::ProcessorStorageConstructor {
|
|||||||
micro_op_location_16 = micro_op_location_8;
|
micro_op_location_16 = micro_op_location_8;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Insert into the map.
|
// Insert into the map and return the resulting iterator.
|
||||||
auto [iterator, _] = installed_patterns.insert(std::make_pair(key, std::make_pair(micro_op_location_8, micro_op_location_16)));
|
return installed_patterns.insert(std::make_pair(key, std::make_pair(micro_op_location_8, micro_op_location_16))).first;
|
||||||
return iterator;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Reference in New Issue
Block a user