JAudio2 debug (#2990)

This commit is contained in:
Jcw87
2025-12-23 10:23:09 -08:00
committed by GitHub
parent c9d0c58ffe
commit 6ef13c620a
21 changed files with 464 additions and 229 deletions
+2 -2
View File
@@ -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(); }