mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
[qfcc] Update ptraliasenc test for new format
With the use of the full type for encoding type aliases, ptraliasenc's simple check became invalid (it's purpose is to ensure the encoding doesn't have "null" in it, not the exact encoding itself, but this is good enough).
This commit is contained in:
parent
7ce475b114
commit
fdeb294c58
1 changed files with 1 additions and 1 deletions
|
@ -27,5 +27,5 @@ main (void)
|
|||
xdef++;
|
||||
}
|
||||
printf ("int32_ptr: %s\n", xdef.type.encoding);
|
||||
return xdef.type.encoding != "{>^i}";
|
||||
return xdef.type.encoding != "{>^{int32_t>i}}";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue