From 93435568f53f4cb5a865afac381a0ef76516defa Mon Sep 17 00:00:00 2001 From: Owen Yamauchi Date: Thu, 30 May 2013 13:24:04 -0700 Subject: [PATCH] add missing include Summary: Newer versions of boost fail without this. I guess mutex.hpp doesn't include lock_guard.hpp indirectly anymore, or something. Test Plan: built on OS X. This was part of what I had to do for my OS X-building attempts from a few weeks ago. Reviewed By: delong.j@fb.com FB internal diff: D830157 --- folly/detail/ThreadLocalDetail.h | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/detail/ThreadLocalDetail.h b/folly/detail/ThreadLocalDetail.h index 537e6b6b..205d2e52 100644 --- a/folly/detail/ThreadLocalDetail.h +++ b/folly/detail/ThreadLocalDetail.h @@ -23,6 +23,7 @@ #include #include +#include #include #include -- 2.34.1