Commit e157e5a9 by Corentin Wallez Committed by Commit Bot

Fix missing virtual destructor warning on OSX standalone

BUG=angleproject:422 Change-Id: I1a1c4551f2fc55b74afd66e7f18ea61e77250eb6 Reviewed-on: https://chromium-review.googlesource.com/414634 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent ee9f08c0
...@@ -42,6 +42,7 @@ enum class EventInitialState ...@@ -42,6 +42,7 @@ enum class EventInitialState
class Closure class Closure
{ {
public: public:
virtual ~Closure() = default;
virtual void operator()() = 0; virtual void operator()() = 0;
}; };
......
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