Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brian@briansmith.org>2015-01-29 03:20:02 +0300
committerAdam Langley <agl@google.com>2015-01-31 03:18:55 +0300
commitefed2210e8e0c6b3db6c63e354f0c9b67673c712 (patch)
treec13b45b9da0de9ac923e8f972cf3616ed02bb1d5 /crypto/mem.c
parent0bb81fcd66609967b35ef1074d865716520f1dd4 (diff)
Enable more warnings & treat warnings as errors on Windows.
Change-Id: I2bf0144aaa8b670ff00b8e8dfe36bd4d237b9a8a Reviewed-on: https://boringssl-review.googlesource.com/3140 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/mem.c')
-rw-r--r--crypto/mem.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/mem.c b/crypto/mem.c
index 11ef3352..a8a8c084 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -65,7 +65,9 @@
#include <string.h>
#if defined(OPENSSL_WINDOWS)
+#pragma warning(push, 3)
#include <Windows.h>
+#pragma warning(pop)
#else
#include <strings.h>
#endif