X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fopenssl%2Flhash.h;h=88d7d977b9ec3f9ddb2acfbdbcd7cf70c300b2b5;hb=ebfd055b29861b127c9cf4ed76553e109301fc64;hp=a3adc647ca747abb35af74d972b1cefb1a82dfdb;hpb=b3c42fc2503a685a9e51427c1a83c8f09487389d;p=oweals%2Fopenssl.git diff --git a/include/openssl/lhash.h b/include/openssl/lhash.h index a3adc647ca..88d7d977b9 100644 --- a/include/openssl/lhash.h +++ b/include/openssl/lhash.h @@ -195,8 +195,21 @@ void OPENSSL_LH_node_usage_stats_bio(const OPENSSL_LHASH *lh, BIO *out); LHASH_OF(type) DEFINE_LHASH_OF(OPENSSL_STRING); +# ifdef _MSC_VER +/* + * push and pop this warning: + * warning C4090: 'function': different 'const' qualifiers + */ +# pragma warning (push) +# pragma warning (disable: 4090) +# endif + DEFINE_LHASH_OF(OPENSSL_CSTRING); +# ifdef _MSC_VER +# pragma warning (pop) +# endif + #ifdef __cplusplus } #endif