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
./include/sciter-om.h:4:10: warning: the current #pragma pack alignment value is modified in the included file [-Wpragma-pack]
./include/sciter-om.h:14:24: error: must use 'struct' tag to refer to type 'som_asset_t'
./include/sciter-om.h:15:24: error: must use 'struct' tag to refer to type 'som_asset_t'
./include/sciter-om.h:16:30: error: must use 'struct' tag to refer to type 'som_asset_t'
./include/sciter-om.h:17:3: error: must use 'struct' tag to refer to type 'som_passport_t'
./include/sciter-om.h:17:41: error: must use 'struct' tag to refer to type 'som_asset_t'
I really don't understand the problem, because this is pretty straight forward C code. Any idea how to solve this?
The text was updated successfully, but these errors were encountered:
Based on the error messages I would say this is a C++ header file. In C, when referring to the name of a struct, the keyword struct need to be included. Currently DStep doesn't support C++. This particular header might still work if you set the language to C++, same flags as for Clang.
BTW: Is there a way that Dstep will write the result as far as it made it? And not stop on an error? With this I could take the result and manually fix/extend all missing parts.
I have this code on windows and run dstep on Windows 64-bit too:
For this code snippet I get a bunch of errors:
I really don't understand the problem, because this is pretty straight forward C code. Any idea how to solve this?
The text was updated successfully, but these errors were encountered: