Index: base/debug/asan_invalid_access.cc |
diff --git a/base/debug/asan_invalid_access.cc b/base/debug/asan_invalid_access.cc |
index cee21066265c08282c90fc7fe95430f82422870b..0abde8c0a324192406d426830406f6f42189816d 100644 |
--- a/base/debug/asan_invalid_access.cc |
+++ b/base/debug/asan_invalid_access.cc |
@@ -2,14 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#if defined(OS_WIN) |
-#include <windows.h> |
-#endif |
+#include <stddef.h> |
#include "base/debug/alias.h" |
#include "base/debug/asan_invalid_access.h" |
#include "base/logging.h" |
#include "base/memory/scoped_ptr.h" |
+#include "build/build_config.h" |
+ |
+#if defined(OS_WIN) |
+#include <windows.h> |
+#endif |
namespace base { |
namespace debug { |