From 461255b2148ebcff1a37c440d32c31e69e15e46a Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Mon, 19 Jun 2017 00:04:43 -0700 Subject: [PATCH] Fix the build of detail/CacheLocality.h on Windows Summary: It was broken by D5139886 which added a call to `std::__throw_bad_alloc` without first including the correct portability header. Reviewed By: yfeldblum Differential Revision: D5273016 fbshipit-source-id: cac1772f41ae5942a29cefa69fb07d9cf94b5aab --- folly/detail/CacheLocality.h | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/detail/CacheLocality.h b/folly/detail/CacheLocality.h index b7aa2553..741d30f8 100644 --- a/folly/detail/CacheLocality.h +++ b/folly/detail/CacheLocality.h @@ -34,6 +34,7 @@ #include #include #include +#include #include namespace folly { -- 2.34.1