From 43200974b7115bfd55175278607f3892a84b06be Mon Sep 17 00:00:00 2001 From: Marko Novakovic Date: Wed, 25 Oct 2017 10:15:40 -0700 Subject: [PATCH] Supply an explicit default dtor impl Reviewed By: yfeldblum Differential Revision: D6142252 fbshipit-source-id: 9ac98585a92299ca5915982c65c7d2cfa68bf60f --- folly/Executor.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/folly/Executor.h b/folly/Executor.h index d4a190a6..68866210 100644 --- a/folly/Executor.h +++ b/folly/Executor.h @@ -28,7 +28,8 @@ using Func = Function; /// threadsafe. class Executor { 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 /// variants must be threadsafe. -- 2.34.1