mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-29 00:11:34 +00:00
refactor: Change bit_set type for SizeHints to int
This doesn't really change actual behavior, but to stay accurate to the internal logic of X11, this would be a regular long for the flags, not an unsigned long.
This commit is contained in:
2
vendor/x11/xlib/xlib_const.odin
vendored
2
vendor/x11/xlib/xlib_const.odin
vendored
@@ -713,7 +713,7 @@ AllHints :: WMHints{
|
||||
.WindowGroupHint,
|
||||
}
|
||||
|
||||
SizeHints :: bit_set[SizeHintsBits; uint]
|
||||
SizeHints :: bit_set[SizeHintsBits; int]
|
||||
SizeHintsBits :: enum {
|
||||
USPosition = 0,
|
||||
USSize = 1,
|
||||
|
||||
Reference in New Issue
Block a user