From: Marko Novakovic Date: Wed, 25 Oct 2017 17:15:40 +0000 (-0700) Subject: Supply an explicit default dtor impl X-Git-Tag: v2017.10.30.00~17 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=43200974b7115bfd55175278607f3892a84b06be;p=folly.git Supply an explicit default dtor impl Reviewed By: yfeldblum Differential Revision: D6142252 fbshipit-source-id: 9ac98585a92299ca5915982c65c7d2cfa68bf60f --- 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.