mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 15:15:46 +00:00
core: arm: arm_interface: Fix shadowing errors.
This commit is contained in:
parent
7f4d928f77
commit
6cbeabce0d
1 changed files with 4 additions and 3 deletions
|
@ -26,9 +26,10 @@ using CPUInterrupts = std::array<CPUInterruptHandler, Core::Hardware::NUM_CPU_CO
|
||||||
/// Generic ARMv8 CPU interface
|
/// Generic ARMv8 CPU interface
|
||||||
class ARM_Interface : NonCopyable {
|
class ARM_Interface : NonCopyable {
|
||||||
public:
|
public:
|
||||||
explicit ARM_Interface(System& system_, CPUInterrupts& interrupt_handlers, bool uses_wall_clock)
|
explicit ARM_Interface(System& system_, CPUInterrupts& interrupt_handlers_,
|
||||||
: system{system_}, interrupt_handlers{interrupt_handlers}, uses_wall_clock{
|
bool uses_wall_clock_)
|
||||||
uses_wall_clock} {}
|
: system{system_}, interrupt_handlers{interrupt_handlers_}, uses_wall_clock{
|
||||||
|
uses_wall_clock_} {}
|
||||||
virtual ~ARM_Interface() = default;
|
virtual ~ARM_Interface() = default;
|
||||||
|
|
||||||
struct ThreadContext32 {
|
struct ThreadContext32 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue