mirror of
https://github.com/zeldaret/tp
synced 2026-09-01 17:49:58 -04:00
JAudio2 debug (#2990)
This commit is contained in:
@@ -230,7 +230,7 @@ public:
|
||||
|
||||
T* getObject() const { return this->mTree->getObject(); }
|
||||
|
||||
bool operator==(JSUTree<T>* other) { return this->mTree == other; }
|
||||
bool operator==(const JSUTree<T>* other) const { return this->mTree == other; }
|
||||
|
||||
bool operator!=(const JSUTree<T>* other) const { return this->mTree != other; }
|
||||
|
||||
@@ -245,7 +245,7 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
T* operator*() { return this->getObject(); }
|
||||
T* operator*() const { return this->getObject(); }
|
||||
|
||||
T* operator->() const { return this->getObject(); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user