Skip to content

Commit

Permalink
Add a No-arg character filter constructor for Rack (surge-synthesizer…
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Aug 31, 2023
1 parent 6ee813c commit 8b0eb00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/dsp/oscillators/OscillatorCommonFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ struct DriftLFO
*/
template <typename valtype> struct CharacterFilter
{
SurgeStorage *storage;
SurgeStorage *storage{nullptr};
CharacterFilter() {}
CharacterFilter(SurgeStorage *s) noexcept : storage(s) {}

void init(int itype)
Expand Down

0 comments on commit 8b0eb00

Please sign in to comment.