mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 04:34:43 +01:00
Eliminate variable shadowing warnings with MSVC (#17)
This commit is contained in:
parent
7f9a0c3c38
commit
858796a029
5 changed files with 16 additions and 7 deletions
|
|
@ -46,8 +46,8 @@ Arm::LocationDescriptor Block::ConditionFailedLocation() const {
|
|||
return cond_failed.get();
|
||||
}
|
||||
|
||||
void Block::SetConditionFailedLocation(Arm::LocationDescriptor location) {
|
||||
cond_failed = location;
|
||||
void Block::SetConditionFailedLocation(Arm::LocationDescriptor fail_location) {
|
||||
cond_failed = fail_location;
|
||||
}
|
||||
|
||||
size_t& Block::ConditionFailedCycleCount() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue