mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
NOISSUE fix fix fix the accounts again
This commit is contained in:
parent
27e328c044
commit
b49987e876
8 changed files with 17 additions and 10 deletions
|
|
@ -77,6 +77,12 @@ public:
|
|||
{
|
||||
return m_ptr;
|
||||
}
|
||||
bool operator==(const shared_qobject_ptr<T>& other) {
|
||||
return m_ptr == other.m_ptr;
|
||||
}
|
||||
bool operator!=(const shared_qobject_ptr<T>& other) {
|
||||
return m_ptr != other.m_ptr;
|
||||
}
|
||||
|
||||
private:
|
||||
std::shared_ptr <T> m_ptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue