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/thread.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/thread.c')
-rw-r--r--crypto/thread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/thread.c b/crypto/thread.c
index 15e38bdd..6e8d4949 100644
--- a/crypto/thread.c
+++ b/crypto/thread.c
@@ -59,7 +59,9 @@
#include <errno.h>
#if defined(OPENSSL_WINDOWS)
+#pragma warning(push, 3)
#include <Windows.h>
+#pragma warning(pop)
#endif
#include <openssl/mem.h>