We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
As of 5.4, there is the following compile warning:
11>EXEC: Warning : do not include Windows/PreWindowsApi.h directly. Use Windows/WindowsHWrapper.h or Windows/AllowWindowsPlatformTypes.h instead
I believe this stems from TurboLinkGrpcModule.cpp line 14
Unsure which is the correct include to use for Turbolink
The text was updated successfully, but these errors were encountered:
Try this:
#if PLATFORM_WINDOWS #if defined(WINDOWS_H_WRAPPER_GUARD) #error WINDOWS_H_WRAPPER_GUARD already defined #endif #define WINDOWS_H_WRAPPER_GUARD #include "Windows/PreWindowsApi.h" #endif
#include "grpc/grpc.h" #include "grpc/support/log.h" #include "google/protobuf/descriptor_database.h"
#if PLATFORM_WINDOWS #include "Windows/PostWindowsApi.h" #undef WINDOWS_H_WRAPPER_GUARD #endif
Sorry, something went wrong.
@moonbusmike Sadly that does not solve the compiler warnings.
No branches or pull requests
Hello,
As of 5.4, there is the following compile warning:
11>EXEC: Warning : do not include Windows/PreWindowsApi.h directly. Use Windows/WindowsHWrapper.h or Windows/AllowWindowsPlatformTypes.h instead
I believe this stems from TurboLinkGrpcModule.cpp line 14
Unsure which is the correct include to use for Turbolink
The text was updated successfully, but these errors were encountered: