Skip to content

Commit

Permalink
Apply clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 23, 2024
1 parent 3d0ed49 commit 6e31424
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
34 changes: 17 additions & 17 deletions src/processors/modulation/phaser/Phaser4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ const String mixTag = "mix";
} // namespace Phaser4Tags

Phaser4::Phaser4 (UndoManager* um) : BaseProcessor (
"Phaser4",
createParameterLayout(),
InputPort {},
OutputPort {},
um,
[] (InputPort port)
{
if (port == InputPort::ModulationInput)
return PortType::modulation;
return PortType::audio;
},
[] (OutputPort port)
{
if (port == OutputPort::ModulationOutput)
return PortType::modulation;
return PortType::audio;
})
"Phaser4",
createParameterLayout(),
InputPort {},
OutputPort {},
um,
[] (InputPort port)
{
if (port == InputPort::ModulationInput)
return PortType::modulation;
return PortType::audio;
},
[] (OutputPort port)
{
if (port == OutputPort::ModulationOutput)
return PortType::modulation;
return PortType::audio;
})
{
using namespace ParameterHelpers;
loadParameterPointer (rateHzParam, vts, Phaser4Tags::rateTag);
Expand Down
1 change: 0 additions & 1 deletion src/processors/other/krusher/Krusher.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#include "krusher_fallback_impl.h"
#endif


#include "processors/BaseProcessor.h"

class Krusher : public BaseProcessor
Expand Down

0 comments on commit 6e31424

Please sign in to comment.