Skip to content

Commit

Permalink
Merge pull request #8693 from howard0su/warning_xinpu
Browse files Browse the repository at this point in the history
InputCommon: cleanup warnings of -Wclass-memaccess
  • Loading branch information
JosJuice committed Mar 23, 2020
2 parents 6fab099 + 997cfa4 commit a6d1fe5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ void KeyboardMouse::SelectEventsForDevice(Window window, XIEventMask* mask, int
KeyboardMouse::KeyboardMouse(Window window, int opcode, int pointer, int keyboard)
: m_window(window), xi_opcode(opcode), pointer_deviceid(pointer), keyboard_deviceid(keyboard)
{
memset(&m_state, 0, sizeof(m_state));

// The cool thing about each KeyboardMouse object having its own Display
// is that each one gets its own separate copy of the X11 event stream,
// which it can individually filter to get just the events it's interested
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class KeyboardMouse : public Core::Device
private:
Window m_window;
Display* m_display;
State m_state;
State m_state{};
int xi_opcode;
const int pointer_deviceid, keyboard_deviceid;
std::string name;
Expand Down

0 comments on commit a6d1fe5

Please sign in to comment.