1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix a compiler warning in ReaperEmbeddedViewDemo

This commit is contained in:
Tom Poole 2021-06-26 07:21:09 +01:00
parent 56cf81d32b
commit e1f855ae6d

View file

@ -105,6 +105,8 @@ struct EmbeddedViewListener
Steinberg::TPtrInt parm3) = 0;
};
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wnon-virtual-dtor")
//==============================================================================
class EmbeddedUI : public reaper::IReaperUIEmbedInterface
{
@ -138,6 +140,8 @@ private:
std::atomic<int> refCount { 1 };
};
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
//==============================================================================
class Editor : public AudioProcessorEditor
{