Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3420)
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