Commit f754f2b9 by Abseil Team Committed by Copybara-Service

Add missing include for Windows ASAN configuration in poison.cc

GetPageSize requires windows include regardless of presence of ASAN or MSAN

PiperOrigin-RevId: 653705885
Change-Id: I4c7eec09db6c1a6168dd249cf584f1774d6cead2
parent 0598e582
...@@ -29,7 +29,9 @@ ...@@ -29,7 +29,9 @@
#include <sanitizer/msan_interface.h> #include <sanitizer/msan_interface.h>
#elif defined(ABSL_HAVE_MMAP) #elif defined(ABSL_HAVE_MMAP)
#include <sys/mman.h> #include <sys/mman.h>
#elif defined(_WIN32) #endif
#if defined(_WIN32)
#include <windows.h> #include <windows.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment