From 2657ebb5d381d1c1fbf064febf10c798d77402c3 Mon Sep 17 00:00:00 2001 From: Marcin Pawlowski Date: Mon, 9 Feb 2015 13:41:02 -0800 Subject: [PATCH] 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 --- folly/wangle/acceptor/Acceptor.cpp | 1 + 1 file changed, 1 insertion(+) 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; -- 2.34.1