Created
December 24, 2013 03:18
-
-
Save zeux/8108350 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifdef _WIN32 | |
#pragma warning(push) | |
#pragma warning(disable: 4073) | |
#pragma init_seg(lib) | |
struct SslInitializer | |
{ | |
SslInitializer() | |
{ | |
QSslSocket::supportsSsl(); | |
} | |
} sslInitializer; | |
#pragma warning(pop) | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment