From: Marcin Pawlowski Date: Mon, 9 Feb 2015 21:41:02 +0000 (-0800) Subject: fix open source build X-Git-Tag: v0.25.0~9 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2657ebb5d381d1c1fbf064febf10c798d77402c3;p=folly.git fix open source build Summary: include was missing, causing build to fail on Arch Linux with gcc 4.9.2 -- found this while resolving other issues. Test Plan: build folly on my personal linux and on dev server Reviewed By: viswanath@fb.com Subscribers: fugalh, folly-diffs@, jsedgwick, yfeldblum FB internal diff: D1835143 Signature: t1:1835143:1423513128:5dcff69a82878f47b40512711ed254f239399c2c --- diff --git a/folly/wangle/acceptor/Acceptor.cpp b/folly/wangle/acceptor/Acceptor.cpp index 8e616c23..010022ce 100644 --- a/folly/wangle/acceptor/Acceptor.cpp +++ b/folly/wangle/acceptor/Acceptor.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include using folly::wangle::ConnectionManager;