Skip to content

Commit

Permalink
Clean up compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwillis committed Dec 28, 2022
1 parent e1ecb2f commit f7bb1bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/dragonfly-hall-reverb/Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DragonflyReverbPlugin : public Plugin
float getParameterValue(uint32_t index) const override;
void setParameterValue(uint32_t index, float value) override;

void setState(const char* key, const char* value);
void setState(const char* key, const char* value) override;

// -------------------------------------------------------------------
// Process
Expand Down
3 changes: 1 addition & 2 deletions plugins/dragonfly-plate-reverb/Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class DragonflyReverbPlugin : public Plugin
float getParameterValue(uint32_t index) const override;
void setParameterValue(uint32_t index, float value) override;

void setState(const char* key, const char* value);
void setState(const char* key, const char* value) override;

// -------------------------------------------------------------------
// Process
Expand All @@ -98,7 +98,6 @@ class DragonflyReverbPlugin : public Plugin

private:
DragonflyReverbDSP dsp;
int bank;
int preset;
DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(DragonflyReverbPlugin)
};
Expand Down
2 changes: 1 addition & 1 deletion plugins/dragonfly-room-reverb/Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class DragonflyReverbPlugin : public Plugin
float getParameterValue(uint32_t index) const override;
void setParameterValue(uint32_t index, float value) override;

void setState(const char* key, const char* value);
void setState(const char* key, const char* value) override;

// -------------------------------------------------------------------
// Process
Expand Down

0 comments on commit f7bb1bb

Please sign in to comment.