From 63ccbd0e4c2fa9e1f69c0b1e5f4627ad66dcc4f1 Mon Sep 17 00:00:00 2001 From: Mark Mentovai Date: Wed, 14 Jun 2017 16:12:16 -0400 Subject: [PATCH] Remove compiler_specific.h #include from aligned_allocator.h This was missed in Crashpad 8c35d92ae403. It syncs with Chromium 16289b3ef759. Change-Id: I7e92e71fc940e25e751e7487d100b5684bdbf667 Reviewed-on: https://chromium-review.googlesource.com/535577 Commit-Queue: Mark Mentovai Reviewed-by: Scott Graham Reviewed-by: Mark Mentovai --- util/stdlib/aligned_allocator.h | 1 - util/stdlib/aligned_allocator_test.cc | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/util/stdlib/aligned_allocator.h b/util/stdlib/aligned_allocator.h index 91012551..e8b72c7a 100644 --- a/util/stdlib/aligned_allocator.h +++ b/util/stdlib/aligned_allocator.h @@ -23,7 +23,6 @@ #include #include -#include "base/compiler_specific.h" #include "build/build_config.h" #include "util/stdlib/cxx.h" diff --git a/util/stdlib/aligned_allocator_test.cc b/util/stdlib/aligned_allocator_test.cc index 2799558e..4a018f58 100644 --- a/util/stdlib/aligned_allocator_test.cc +++ b/util/stdlib/aligned_allocator_test.cc @@ -16,6 +16,7 @@ #include +#include "base/compiler_specific.h" #include "gtest/gtest.h" #if defined(OS_WIN)