Commit 7815aad3 authored by Victor Zverovich's avatar Victor Zverovich Committed by Facebook Github Bot

Remove unnecessary includes and dependencies

Summary: Stumbled upon some unused includes. Remove them.

Reviewed By: yfeldblum, stevegury

Differential Revision: D13549301

fbshipit-source-id: 9e18e3764baff02d8a077a81124633ea21698dbb
parent f60210a7
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
#include <folly/io/async/DelayedDestructionBase.h> #include <folly/io/async/DelayedDestructionBase.h>
#include <glog/logging.h>
namespace folly { namespace folly {
/** /**
......
...@@ -24,9 +24,6 @@ ...@@ -24,9 +24,6 @@
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <boost/noncopyable.hpp>
#include <glog/logging.h>
namespace folly { namespace folly {
/** /**
...@@ -46,8 +43,11 @@ namespace folly { ...@@ -46,8 +43,11 @@ namespace folly {
* DelayedDestructionBase does not perform any locking. It is intended to be * DelayedDestructionBase does not perform any locking. It is intended to be
* used only from a single thread. * used only from a single thread.
*/ */
class DelayedDestructionBase : private boost::noncopyable { class DelayedDestructionBase {
public: public:
DelayedDestructionBase(const DelayedDestructionBase&) = delete;
DelayedDestructionBase& operator=(const DelayedDestructionBase&) = delete;
virtual ~DelayedDestructionBase() = default; virtual ~DelayedDestructionBase() = default;
/** /**
......
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
#include <chrono> #include <chrono>
#include <cstddef> #include <cstddef>
#include <list>
#include <memory> #include <memory>
namespace folly { namespace folly {
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <folly/io/async/DelayedDestruction.h> #include <folly/io/async/DelayedDestruction.h>
#include <folly/portability/GTest.h> #include <folly/portability/GTest.h>
#include <glog/logging.h>
using namespace folly; using namespace folly;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment