Merge pull request #8693 from howard0su/warning_xinpu

InputCommon: cleanup warnings of -Wclass-memaccess
This commit is contained in:
JosJuice 2020-03-23 19:18:08 +01:00 committed by GitHub
commit a6d1fe59a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -131,8 +131,6 @@ void KeyboardMouse::SelectEventsForDevice(Window window, XIEventMask* mask, int
KeyboardMouse::KeyboardMouse(Window window, int opcode, int pointer, int keyboard) KeyboardMouse::KeyboardMouse(Window window, int opcode, int pointer, int keyboard)
: m_window(window), xi_opcode(opcode), pointer_deviceid(pointer), keyboard_deviceid(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 // 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, // 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 // which it can individually filter to get just the events it's interested

View File

@ -105,7 +105,7 @@ public:
private: private:
Window m_window; Window m_window;
Display* m_display; Display* m_display;
State m_state; State m_state{};
int xi_opcode; int xi_opcode;
const int pointer_deviceid, keyboard_deviceid; const int pointer_deviceid, keyboard_deviceid;
std::string name; std::string name;