Commit 3c712d67 authored by Gabriel Russo's avatar Gabriel Russo Committed by Facebook Github Bot

Remove unused initializer from abstract DefaultKeepAliveExecutor

Summary: This constructor would never be called since the class is abstract (the method `add` from `Executor` is not implemented). This causes a warning which fails builds because of `-Werror`.

Reviewed By: yfeldblum

Differential Revision: D19345492

fbshipit-source-id: 20f185e0903a03acbde2e55e5a575e20deb5ad2a
parent 0ded2678
...@@ -29,8 +29,6 @@ namespace folly { ...@@ -29,8 +29,6 @@ namespace folly {
/// threadsafe. /// threadsafe.
class DefaultKeepAliveExecutor : public virtual Executor { class DefaultKeepAliveExecutor : public virtual Executor {
public: public:
DefaultKeepAliveExecutor() : Executor() {}
virtual ~DefaultKeepAliveExecutor() { virtual ~DefaultKeepAliveExecutor() {
DCHECK(!keepAlive_); DCHECK(!keepAlive_);
} }
......
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