Fix missing virtual on destructor

BUG=

Change-Id: Id5571ec775c8cf0109dd5348c2054e524911e0e5
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/10800
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2019-09-03 07:47:45 +00:00 committed by Commit Bot service account
parent 179d7b28a3
commit c7910d19fe

View File

@ -26,7 +26,7 @@ namespace dawn_wire {
class WireDeserializeAllocator : public DeserializeAllocator {
public:
WireDeserializeAllocator();
~WireDeserializeAllocator();
virtual ~WireDeserializeAllocator();
void* GetSpace(size_t size) override;