projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad18558
)
Ignore MSVC warnings (via Gisle Vanem)
author
Rich Salz
<rsalz@openssl.org>
Tue, 9 May 2017 17:27:30 +0000
(13:27 -0400)
committer
Rich Salz
<rsalz@openssl.org>
Wed, 10 May 2017 16:11:23 +0000
(12:11 -0400)
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3420)
(cherry picked from commit
05004f366ecd6b4fcc968739648be9b7fd87df3f
)
include/openssl/lhash.h
patch
|
blob
|
history
diff --git
a/include/openssl/lhash.h
b/include/openssl/lhash.h
index e2ccb65d699980b734af891bfa474f3daff3931c..82d40c1e0e708d2f1a2f7963ea75678b1199a59e 100644
(file)
--- 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