diff options
Diffstat (limited to 'absl/copts.bzl')
-rw-r--r-- | absl/copts.bzl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/absl/copts.bzl b/absl/copts.bzl index 5c508f17df97..49bb697d6e5b 100644 --- a/absl/copts.bzl +++ b/absl/copts.bzl @@ -130,7 +130,11 @@ MSVC_FLAGS = [ "/wd4800", # forcing value to bool 'true' or 'false' (performance warning) "/DNOMINMAX", # Don't define min and max macros (windows.h) "/DWIN32_LEAN_AND_MEAN", # Don't bloat namespace with incompatible winsock versions. - "/D_CRT_SECURE_NO_WARNINGS", # Don't warn about usage of insecure C functions + "/D_CRT_SECURE_NO_WARNINGS", # Don't warn about usage of insecure C functions. + "/D_SCL_SECURE_NO_WARNINGS", # Don't warm when the compiler encounters a function or + # variable that is marked as deprecated (same as /wd4996). + "/D_ENABLE_EXTENDED_ALIGNED_STORAGE", # Introduced in VS 2017 15.8, + # before the member type would non-conformingly have an alignment of only alignof(max_align_t). ] MSVC_TEST_FLAGS = [ |