core: arm: arm_interface: Fix shadowing errors.
This commit is contained in:
parent
82f6037ec2
commit
354130cd84
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…
Reference in a new issue