Skip to content
Snippets Groups Projects
Commit 354130cd authored by bunnei's avatar bunnei
Browse files

core: arm: arm_interface: Fix shadowing errors.

parent 82f6037e
No related branches found
No related tags found
No related merge requests found
...@@ -26,9 +26,10 @@ using CPUInterrupts = std::array<CPUInterruptHandler, Core::Hardware::NUM_CPU_CO ...@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment