From 4e402379e3e810d2b8779a2d1c5822730133bca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Wed, 7 Sep 2016 15:09:30 +0200 Subject: [PATCH] IPC_HLE: Fix warnings about missing override --- .../Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_ven.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_ven.h b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_ven.h index 88f4ecaf26..b7d0f480cd 100644 --- a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_ven.h +++ b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb_ven.h @@ -14,15 +14,15 @@ public: ~CWII_IPC_HLE_Device_usb_ven() override; - virtual IPCCommandResult Open(u32 _CommandAddress, u32 _Mode); - virtual IPCCommandResult Close(u32 _CommandAddress, bool _bForce); + IPCCommandResult Open(u32 _CommandAddress, u32 _Mode) override; + IPCCommandResult Close(u32 _CommandAddress, bool _bForce) override; - virtual IPCCommandResult IOCtlV(u32 _CommandAddress); - virtual IPCCommandResult IOCtl(u32 _CommandAddress); + IPCCommandResult IOCtlV(u32 _CommandAddress) override; + IPCCommandResult IOCtl(u32 _CommandAddress) override; - virtual u32 Update(); + u32 Update() override; - void DoState(PointerWrap& p); + void DoState(PointerWrap& p) override; private: enum USBIOCtl