From 3636383b1f601b35b5cd9cf879f43558e6187728 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 1 Feb 2023 14:20:11 -0500 Subject: [PATCH] Silence abstract/non-virtual-destructor warning. --- Components/9918/Implementation/YamahaCommands.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Components/9918/Implementation/YamahaCommands.hpp b/Components/9918/Implementation/YamahaCommands.hpp index ebaf85dde..6fd3e7cdc 100644 --- a/Components/9918/Implementation/YamahaCommands.hpp +++ b/Components/9918/Implementation/YamahaCommands.hpp @@ -91,6 +91,7 @@ struct Command { /// Current command parameters. CommandContext &context; Command(CommandContext &context) : context(context) {} + virtual ~Command() {} /// @returns @c true if all output from this command is done; @c false otherwise. virtual bool done() = 0;