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
in 1 place struct Handler__reference initialized like pointer
in 2 place DefaultHandler * assigned to struct Handler_reference
in 3 place we also have cast to non scalar type.
The text was updated successfully, but these errors were encountered:
Interfaces are a known buggy feature and MSVC compatibility has not been tested in a long time.
However, I will take a look into these tomorrow, especially the last issue you pointed out.
I try build rock in Visual Studio 2015, but got several bugs which i don't understand.
I can fix that manually in C source, but I think it's wrong.
I tried minimize broken code, and:
in C source I got... example:
Handler_reference is struct, and I think such cast is GCC extension not allowed in C99, and in Visual C.
Next. In some places uses structs without member, is also GCC extension imho, and Visual C++ throw
error C2016: C requires that a struct or union has at least one member.
And finally. When I tried minimize broken code, I write:
and got
in 1 place struct Handler__reference initialized like pointer
in 2 place DefaultHandler * assigned to struct Handler_reference
in 3 place we also have cast to non scalar type.
The text was updated successfully, but these errors were encountered: