Skip to content

Commit c6be34c

Browse files
committed
Fix build.
1 parent f415c58 commit c6be34c

File tree

5 files changed

+0
-15
lines changed

5 files changed

+0
-15
lines changed

SerialPrograms/Source/Controllers/Controller.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ class AbstractController{
5656
// Static Information
5757

5858
virtual const char* name() = 0;
59-
// virtual ControllerType controller_type() const = 0;
6059
virtual ControllerClass controller_class() const = 0;
6160

6261
// Performance Metrics

SerialPrograms/Source/NintendoSwitch/Controllers/SerialPABotBase/NintendoSwitch_SerialPABotBase_Joycon.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@ class SerialPABotBase_Joycon :
4545

4646

4747
public:
48-
// virtual ControllerType controller_type() const override{
49-
// return m_controller_type;
50-
// }
51-
5248
virtual ControllerPerformanceClass performance_class() const override{
5349
return m_performance_class;
5450
}

SerialPrograms/Source/NintendoSwitch/Controllers/SerialPABotBase/NintendoSwitch_SerialPABotBase_ProController.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ class SerialPABotBase_ProController final :
4343

4444

4545
public:
46-
// virtual ControllerType controller_type() const override{
47-
// return m_controller_type;
48-
// }
49-
5046
virtual ControllerPerformanceClass performance_class() const override{
5147
return m_performance_class;
5248
}

SerialPrograms/Source/NintendoSwitch/Controllers/SerialPABotBase/NintendoSwitch_SerialPABotBase_WiredController.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ SerialPABotBase_WiredController::SerialPABotBase_WiredController(
3535
controller_type,
3636
connection
3737
)
38-
, m_controller_type(controller_type)
3938
{
4039
using namespace SerialPABotBase;
4140

SerialPrograms/Source/NintendoSwitch/Controllers/SerialPABotBase/NintendoSwitch_SerialPABotBase_WiredController.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@ class SerialPABotBase_WiredController final :
4949

5050

5151
public:
52-
// virtual ControllerType controller_type() const override{
53-
// return m_controller_type;
54-
// }
55-
5652
virtual ControllerPerformanceClass performance_class() const override{
5753
return ControllerPerformanceClass::SerialPABotBase_Wired;
5854
}
@@ -238,7 +234,6 @@ class SerialPABotBase_WiredController final :
238234

239235

240236
private:
241-
const ControllerType m_controller_type;
242237
std::unique_ptr<SerialPABotBase::ControllerStatusThread> m_status_thread;
243238
};
244239

0 commit comments

Comments
 (0)