Commit 43200974 authored by Marko Novakovic's avatar Marko Novakovic Committed by Facebook Github Bot

Supply an explicit default dtor impl

Reviewed By: yfeldblum

Differential Revision: D6142252

fbshipit-source-id: 9ac98585a92299ca5915982c65c7d2cfa68bf60f
parent 2ca10eee
...@@ -28,7 +28,8 @@ using Func = Function<void()>; ...@@ -28,7 +28,8 @@ using Func = Function<void()>;
/// threadsafe. /// threadsafe.
class Executor { class Executor {
public: public:
virtual ~Executor() = default; // Workaround for a linkage problem with explicitly defaulted dtor t22914621
virtual ~Executor() {}
/// Enqueue a function to executed by this executor. This and all /// Enqueue a function to executed by this executor. This and all
/// variants must be threadsafe. /// variants must be threadsafe.
......
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