From: Owen Yamauchi Date: Thu, 30 May 2013 20:24:04 +0000 (-0700) Subject: add missing include X-Git-Tag: v0.22.0~956 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=93435568f53f4cb5a865afac381a0ef76516defa;p=folly.git 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 --- 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