From: Eric Niebler Date: Thu, 1 Sep 2016 18:06:06 +0000 (-0700) Subject: Add ScopeGuard.h include in places where it is needed. X-Git-Tag: v2016.09.05.00~3 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5c304ef79996122080bd44c89c8910bd8a1f8160;p=folly.git Add ScopeGuard.h include in places where it is needed. Summary: Fix code that is transitively including ScopeGuard.h via FBString.h. Reviewed By: yfeldblum Differential Revision: D3801328 fbshipit-source-id: 7e1dc37cd6dd3aa691dd1baf31385d3a8c51eed0 --- diff --git a/folly/futures/detail/Core.h b/folly/futures/detail/Core.h index 7ef597a0..66a6e74c 100644 --- a/folly/futures/detail/Core.h +++ b/folly/futures/detail/Core.h @@ -25,9 +25,10 @@ #include #include #include +#include +#include #include #include -#include #include #include diff --git a/folly/test/ThreadNameTest.cpp b/folly/test/ThreadNameTest.cpp index ec59687a..b4618c37 100644 --- a/folly/test/ThreadNameTest.cpp +++ b/folly/test/ThreadNameTest.cpp @@ -16,6 +16,7 @@ #include #include +#include #include #include