mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 11:55:35 +08:00
refs #341 Fix operator= return types
This commit is contained in:
@@ -30,7 +30,7 @@ namespace BlackInput
|
||||
CJoystickLinux(CJoystickLinux const &) = delete;
|
||||
|
||||
//! Assignment operator
|
||||
void operator=(CJoystickLinux const &) = delete;
|
||||
CJoystickLinux &operator=(CJoystickLinux const &) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CJoystickLinux();
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace BlackInput
|
||||
CKeyboardLinux(CKeyboardLinux const&) = delete;
|
||||
|
||||
//! \brief Assignment operator
|
||||
void operator=(CKeyboardLinux const&) = delete;
|
||||
CKeyboardLinux &operator=(CKeyboardLinux const&) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CKeyboardLinux();
|
||||
|
||||
@@ -30,7 +30,7 @@ namespace BlackInput
|
||||
CJoystickMac(CJoystickMac const &) = delete;
|
||||
|
||||
//! Assignment operator
|
||||
void operator=(CJoystickMac const &) = delete;
|
||||
CJoystickMac &operator=(CJoystickMac const &) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CJoystickMac();
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace BlackInput
|
||||
CKeyboardMac(CKeyboardMac const&) = delete;
|
||||
|
||||
//! \brief Assignment operator
|
||||
void operator=(CKeyboardMac const&) = delete;
|
||||
CKeyboardMac &operator=(CKeyboardMac const&) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CKeyboardMac();
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace BlackInput
|
||||
CJoystickWindows(CJoystickWindows const &) = delete;
|
||||
|
||||
//! Assignment operator
|
||||
void operator=(CJoystickWindows const &) = delete;
|
||||
CJoystickWindows &operator=(CJoystickWindows const &) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CJoystickWindows();
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace BlackInput
|
||||
CKeyboardWindows(CKeyboardWindows const&) = delete;
|
||||
|
||||
//! \brief Assignment operator
|
||||
void operator=(CKeyboardWindows const&) = delete;
|
||||
CKeyboardWindows &operator=(CKeyboardWindows const&) = delete;
|
||||
|
||||
//! \brief Destructor
|
||||
virtual ~CKeyboardWindows();
|
||||
|
||||
Reference in New Issue
Block a user