summaryrefslogtreecommitdiff
path: root/include/JSystem/JUtility
diff options
context:
space:
mode:
authorroeming <brother64youyou@gmail.com>2025-12-18 16:31:44 -0500
committerGitHub <noreply@github.com>2025-12-18 13:31:44 -0800
commit93067110f6bf969776a553ddbefe6a734504f7d6 (patch)
tree0d2d421527c4cb8516d994ec5978195b55fdc234 /include/JSystem/JUtility
parent7cae156176b03d79ef05f3fefae5b60844e0fdf7 (diff)
Use consistent s32/u32 (#2964)
* cleanup long usage * fix regression
Diffstat (limited to 'include/JSystem/JUtility')
-rw-r--r--include/JSystem/JUtility/JUTException.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/JSystem/JUtility/JUTException.h b/include/JSystem/JUtility/JUTException.h
index dc6ef1ac4d..923349a089 100644
--- a/include/JSystem/JUtility/JUTException.h
+++ b/include/JSystem/JUtility/JUTException.h
@@ -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 */