mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
Fix implicit default constructor warning
This commit is contained in:
parent
49e0679864
commit
6fa53691aa
@ -14,7 +14,7 @@ public:
|
|||||||
CopySafeReadWriteLock() = default;
|
CopySafeReadWriteLock() = default;
|
||||||
|
|
||||||
// Don't actually copy the QReadWriteLock
|
// Don't actually copy the QReadWriteLock
|
||||||
CopySafeReadWriteLock(const CopySafeReadWriteLock&) {}
|
CopySafeReadWriteLock(const CopySafeReadWriteLock&) : QReadWriteLock() {}
|
||||||
CopySafeReadWriteLock& operator=(const CopySafeReadWriteLock &) { return *this; }
|
CopySafeReadWriteLock& operator=(const CopySafeReadWriteLock &) { return *this; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user