fix/simplify assert macros (#1929)

This commit is contained in:
TakaRikka
2023-09-16 20:17:56 +03:00
committed by GitHub
parent 3d8048edba
commit 76b94a8916
16 changed files with 112 additions and 112 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ public:
bool isSoundAttached() const { return sound_ != NULL; }
JAISound* operator->() const {
JUT_ASSERT("JAISound.h", 58, sound_ != 0);
JUT_ASSERT(58, sound_ != 0);
return sound_;
}