Use consistent s32/u32 (#2964)

* cleanup long usage

* fix regression
This commit is contained in:
roeming
2025-12-18 16:31:44 -05:00
committed by GitHub
parent 7cae156176
commit 93067110f6
16 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ STATIC_ASSERT(sizeof(JUTException) == 0xA4);
*/
struct JUTWarn {
JUTWarn& operator<<(const char*) { return *this; }
JUTWarn& operator<<(long) { return *this; }
JUTWarn& operator<<(s32) { return *this; }
};
#endif /* JUTEXCEPTION_H */