You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
qmfrederik opened this issue
Apr 5, 2023
· 0 comments
Labels
bugUse this tag for reporting bugs or issues that impede the software's normal functionality.windowsLabel issues that are specific to the Windows operating system with this tag.
The easy workaround appears to be to msvc port to use methods to access values of that struct, rather than the entire struct. But thought it may be worth documenting this issue anyway.
The text was updated successfully, but these errors were encountered:
hmelder
added
bug
Use this tag for reporting bugs or issues that impede the software's normal functionality.
windows
Label issues that are specific to the Windows operating system with this tag.
labels
Sep 9, 2023
bugUse this tag for reporting bugs or issues that impede the software's normal functionality.windowsLabel issues that are specific to the Windows operating system with this tag.
I'm seeing libs-base hitting the
NSCAssert(0, @"Unknown type in sig");
assertion incifframe_type
.In this case, the type being parsed is
b0I1b1I1b2I1b3I1b4I1b5I1b6I1b7I1b8I1b9I1
, which seems to correspond to therflags
struct used byNSView
.I hit this particular use case because as part of an effort to get libs-gui and libs-back to compile on msvc,
rflags
was being accessed via a function call, rather than via the instance variable.The easy workaround appears to be to msvc port to use methods to access values of that struct, rather than the entire struct. But thought it may be worth documenting this issue anyway.
The text was updated successfully, but these errors were encountered: