mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix some LLVM 17 compiler warnings
This commit is contained in:
parent
951b873c14
commit
2fb19ffd8f
176 changed files with 867 additions and 894 deletions
|
|
@ -186,7 +186,7 @@ struct ConvolutionDemoDSP
|
|||
std::vector<DSPDemoParameterBase*> parameters { &cabinetParam };
|
||||
};
|
||||
|
||||
struct ConvolutionDemo : public Component
|
||||
struct ConvolutionDemo final : public Component
|
||||
{
|
||||
ConvolutionDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ struct FIRFilterDemoDSP
|
|||
std::vector<DSPDemoParameterBase*> parameters { &cutoffParam, &typeParam };
|
||||
};
|
||||
|
||||
struct FIRFilterDemo : public Component
|
||||
struct FIRFilterDemo final : public Component
|
||||
{
|
||||
FIRFilterDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ struct GainDemoDSP
|
|||
std::vector<DSPDemoParameterBase*> parameters { &gainParam };
|
||||
};
|
||||
|
||||
struct GainDemo : public Component
|
||||
struct GainDemo final : public Component
|
||||
{
|
||||
GainDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ struct IIRFilterDemoDSP
|
|||
double sampleRate = 0.0;
|
||||
};
|
||||
|
||||
struct IIRFilterDemo : public Component
|
||||
struct IIRFilterDemo final : public Component
|
||||
{
|
||||
IIRFilterDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ struct OscillatorDemoDSP
|
|||
std::vector<DSPDemoParameterBase*> parameters { &typeParam, &accuracy, &freqParam, &gainParam, &mixParam };
|
||||
};
|
||||
|
||||
struct OscillatorDemo : public Component
|
||||
struct OscillatorDemo final : public Component
|
||||
{
|
||||
OscillatorDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ struct OverdriveDemoDSP
|
|||
double sampleRate = 0.0;
|
||||
};
|
||||
|
||||
struct OverdriveDemo : public Component
|
||||
struct OverdriveDemo final : public Component
|
||||
{
|
||||
OverdriveDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@ struct SIMDRegisterDemoDSP
|
|||
double sampleRate = 0.0;
|
||||
};
|
||||
|
||||
struct SIMDRegisterDemo : public Component
|
||||
struct SIMDRegisterDemo final : public Component
|
||||
{
|
||||
SIMDRegisterDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ struct StateVariableFilterDemoDSP
|
|||
double sampleRate = 0.0;
|
||||
};
|
||||
|
||||
struct StateVariableFilterDemo : public Component
|
||||
struct StateVariableFilterDemo final : public Component
|
||||
{
|
||||
StateVariableFilterDemo()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ struct WaveShaperTanhDemoDSP
|
|||
std::vector<DSPDemoParameterBase*> parameters { &accuracy }; // no params for this demo
|
||||
};
|
||||
|
||||
struct WaveShaperTanhDemo : public Component
|
||||
struct WaveShaperTanhDemo final : public Component
|
||||
{
|
||||
WaveShaperTanhDemo()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue