Skip to content

Commit b921f8d

Browse files
committed
Formatting
1 parent e2cd3b1 commit b921f8d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

NeuralAmpModeler/NeuralAmpModelerControls.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ class IContainerBaseWithNamedChildren : public IContainerBase
452452
{
453453
public:
454454
IContainerBaseWithNamedChildren(const IRECT& bounds)
455-
: IContainerBase(bounds){};
455+
: IContainerBase(bounds) {};
456456
~IContainerBaseWithNamedChildren() = default;
457457

458458
protected:
@@ -494,7 +494,7 @@ class ModelInfoControl : public IContainerBaseWithNamedChildren
494494
public:
495495
ModelInfoControl(const IRECT& bounds, const IVStyle& style)
496496
: IContainerBaseWithNamedChildren(bounds)
497-
, mStyle(style){};
497+
, mStyle(style) {};
498498

499499
void ClearModelInfo()
500500
{
@@ -561,7 +561,7 @@ class OutputModeControl : public IVRadioButtonControl
561561
public:
562562
OutputModeControl(const IRECT& bounds, int paramIdx, const IVStyle& style, float buttonSize)
563563
: IVRadioButtonControl(
564-
bounds, paramIdx, {}, "Output Mode", style, EVShape::Ellipse, EDirection::Vertical, buttonSize){};
564+
bounds, paramIdx, {}, "Output Mode", style, EVShape::Ellipse, EDirection::Vertical, buttonSize) {};
565565

566566
void SetNormalizedDisable(const bool disable)
567567
{
@@ -808,7 +808,7 @@ class NAMSettingsPageControl : public IContainerBaseWithNamedChildren
808808
AboutControl(const IRECT& bounds, const IVStyle& style, const IText& text)
809809
: IContainerBase(bounds)
810810
, mStyle(style)
811-
, mText(text){};
811+
, mText(text) {};
812812

813813
void OnAttached() override
814814
{

NeuralAmpModeler/Unserialization.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class _Version
177177
_Version(const int major, const int minor, const int patch)
178178
: mMajor(major)
179179
, mMinor(minor)
180-
, mPatch(patch){};
180+
, mPatch(patch) {};
181181
_Version(const std::string& versionStr)
182182
{
183183
std::istringstream stream(versionStr);

0 commit comments

Comments
 (0)