mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-31 07:59:02 -05:00 
			
		
		
		
	controller_base: Default the base class constructor and destructor in the cpp file
The destructor doesn't need to be a pure-virtual function.
This commit is contained in:
		| @@ -5,6 +5,8 @@ | ||||
| #include "core/hle/service/hid/controllers/controller_base.h" | ||||
|  | ||||
| namespace Service::HID { | ||||
|  | ||||
| ControllerBase::ControllerBase() = default; | ||||
| ControllerBase::~ControllerBase() = default; | ||||
|  | ||||
| void ControllerBase::ActivateController() { | ||||
|   | ||||
| @@ -10,8 +10,8 @@ | ||||
| namespace Service::HID { | ||||
| class ControllerBase { | ||||
| public: | ||||
|     ControllerBase() = default; | ||||
|     virtual ~ControllerBase() = 0; | ||||
|     ControllerBase(); | ||||
|     virtual ~ControllerBase(); | ||||
|  | ||||
|     // Called when the controller is initialized | ||||
|     virtual void OnInit() = 0; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Lioncash
					Lioncash