From a64f5cb7bad69ab59d6f3456b8a80d1bfeacc190 Mon Sep 17 00:00:00 2001 From: Delyan Kratunov Date: Wed, 16 Nov 2016 16:48:47 -0800 Subject: [PATCH] Remove unneeded iostream include Summary: Including `iostream` in a header causes anything that uses this header to gain an extra static initializer for an `std::ios_base::Init` object. If there are N translation units in a library that use the header, that's N more static initializers that need to run. Reviewed By: yfeldblum Differential Revision: D4191798 fbshipit-source-id: 65b47401b9177177999cff65a47ac8dffa0e0546 --- folly/experimental/LockFreeRingBuffer.h | 1 - 1 file changed, 1 deletion(-) diff --git a/folly/experimental/LockFreeRingBuffer.h b/folly/experimental/LockFreeRingBuffer.h index d117926a..a5c71a44 100644 --- a/folly/experimental/LockFreeRingBuffer.h +++ b/folly/experimental/LockFreeRingBuffer.h @@ -18,7 +18,6 @@ #include #include -#include #include #include #include -- 2.34.1