mirror of https://github.com/adamdruppe/arsd.git
Merge pull request #307 from UplinkCoder/patch-1
make changes to have it compile on arm
This commit is contained in:
commit
d3c68f30ea
|
@ -14756,6 +14756,10 @@ enum ColorMapNotification:int
|
|||
alias ulong XID;
|
||||
alias ulong arch_ulong;
|
||||
alias long arch_long;
|
||||
} else version (AArch64) {
|
||||
alias ulong XID;
|
||||
alias ulong arch_ulong;
|
||||
alias long arch_long;
|
||||
} else {
|
||||
alias uint XID;
|
||||
alias uint arch_ulong;
|
||||
|
@ -15549,6 +15553,8 @@ union XEvent{
|
|||
static assert(XAnyEvent.sizeof == 40);
|
||||
static assert(XMappingEvent.sizeof == 56);
|
||||
static assert(XEvent.sizeof == 192);
|
||||
} else version (AArch64) {
|
||||
// omit check for aarch64
|
||||
} else {
|
||||
static assert(Display.sizeof == 176);
|
||||
static assert(XPointer.sizeof == 4);
|
||||
|
|
Loading…
Reference in New Issue