removed unneeded semicolon

This commit is contained in:
David Marcec 2019-09-22 18:50:34 +10:00
parent e73ac40eaa
commit 9513abbb0a
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
namespace Service::HID {
ControllerBase::ControllerBase(Core::System& system) : system(system){};
ControllerBase::ControllerBase(Core::System& system) : system(system) {}
ControllerBase::~ControllerBase() = default;
void ControllerBase::ActivateController() {