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 Jul 18, 2023
1 parent 8b1d8f9 commit 901016e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/gui/pedalboard/BoardComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ constexpr int getScaleDim (int dim, float scaleFactor)

juce::Point<int> getRandomPosition (const Component& comp)
{
auto b = comp.getLocalBounds()\
auto b = comp.getLocalBounds()
.withWidth (comp.getWidth() * 2 / 3)
.withHeight (comp.getHeight() * 2 / 3);

Expand Down
9 changes: 4 additions & 5 deletions src/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,20 @@
// Any other widely used headers that don't change...
#include <FuzzySearchDatabase.hpp>

JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE("-Wzero-as-null-pointer-constant",
"-Wsign-conversion")
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant",
"-Wsign-conversion")
#include <RTNeural/RTNeural.h>
JUCE_END_IGNORE_WARNINGS_GCC_LIKE

#include <chowdsp_wdf/chowdsp_wdf.h>
#include <ea_variant/ea_variant.h>
#include <sst/cpputils.h>

JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE("-Wzero-as-null-pointer-constant",
"-Wsign-conversion")
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant",
"-Wsign-conversion")
#include <modules/Eigen/Eigen/Dense>
JUCE_END_IGNORE_WARNINGS_GCC_LIKE


// global definitions
using Parameters = std::vector<std::unique_ptr<juce::RangedAudioParameter>>;
using ParamLayout = AudioProcessorValueTreeState::ParameterLayout;
Expand Down

0 comments on commit 901016e

Please sign in to comment.