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
The commit b69b17b does not compile on my Windows 8.1 machine, with MSVC 14 (it is the only commit I have tested).
Seems to be the same issue that Pinaraf had last year:
fx_memory.h:
C2065: noinline undeclared identifier
C4430: missing type specifier
C3861: FX_OutOfMemoryTerminate identifier not found
C2448: attribute function-style initializer appears to be a specific function definition
fx_stream.h:
C1083: Cannot open include file: 'dirent.h'. No such file or directory
I have opened the project file in QtCreator and tried to run the 'cpp' target.
The text was updated successfully, but these errors were encountered:
After some analysis I can tell that the macro '&& defined (Q_CC_MSVC)' does not work. I needed to manually define it in the top level pri file, and this is certainly not intended. You could perhaps instead #include <qglobal.h> somewhere. Moreover you seem to be missing the #include <windows.h> for HANDLE and so on...
The commit b69b17b does not compile on my Windows 8.1 machine, with MSVC 14 (it is the only commit I have tested).
Seems to be the same issue that Pinaraf had last year:
fx_memory.h:
C2065: noinline undeclared identifier
C4430: missing type specifier
C3861: FX_OutOfMemoryTerminate identifier not found
C2448: attribute function-style initializer appears to be a specific function definition
fx_stream.h:
C1083: Cannot open include file: 'dirent.h'. No such file or directory
I have opened the project file in QtCreator and tried to run the 'cpp' target.
The text was updated successfully, but these errors were encountered: