mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-21 23:12:03 -07:00
Begin changing union syntax
This commit is contained in:
+1
-1
@@ -705,7 +705,7 @@ extern "C++" {
|
||||
#endif
|
||||
|
||||
#ifndef gb_is_between
|
||||
#define gb_is_between(x, lower, upper) (((x) >= (lower)) && ((x) <= (upper)))
|
||||
#define gb_is_between(x, lower, upper) (((lower) <= (x)) && ((x) <= (upper)))
|
||||
#endif
|
||||
|
||||
#ifndef gb_abs
|
||||
|
||||
Reference in New Issue
Block a user