commit b921f8d8e5614b9e90d53e24c5dd3a35a615a098
parent e2cd3b1081c63faabb4932dd263a591684f7812b
Author: Steven Atkinson <steven@atkinson.mn>
Date: Thu, 19 Dec 2024 22:19:46 -0800
Formatting
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/NeuralAmpModeler/NeuralAmpModelerControls.h b/NeuralAmpModeler/NeuralAmpModelerControls.h
@@ -452,7 +452,7 @@ class IContainerBaseWithNamedChildren : public IContainerBase
{
public:
IContainerBaseWithNamedChildren(const IRECT& bounds)
- : IContainerBase(bounds){};
+ : IContainerBase(bounds) {};
~IContainerBaseWithNamedChildren() = default;
protected:
@@ -494,7 +494,7 @@ class ModelInfoControl : public IContainerBaseWithNamedChildren
public:
ModelInfoControl(const IRECT& bounds, const IVStyle& style)
: IContainerBaseWithNamedChildren(bounds)
- , mStyle(style){};
+ , mStyle(style) {};
void ClearModelInfo()
{
@@ -561,7 +561,7 @@ class OutputModeControl : public IVRadioButtonControl
public:
OutputModeControl(const IRECT& bounds, int paramIdx, const IVStyle& style, float buttonSize)
: IVRadioButtonControl(
- bounds, paramIdx, {}, "Output Mode", style, EVShape::Ellipse, EDirection::Vertical, buttonSize){};
+ bounds, paramIdx, {}, "Output Mode", style, EVShape::Ellipse, EDirection::Vertical, buttonSize) {};
void SetNormalizedDisable(const bool disable)
{
@@ -808,7 +808,7 @@ private:
AboutControl(const IRECT& bounds, const IVStyle& style, const IText& text)
: IContainerBase(bounds)
, mStyle(style)
- , mText(text){};
+ , mText(text) {};
void OnAttached() override
{
diff --git a/NeuralAmpModeler/Unserialization.cpp b/NeuralAmpModeler/Unserialization.cpp
@@ -177,7 +177,7 @@ public:
_Version(const int major, const int minor, const int patch)
: mMajor(major)
, mMinor(minor)
- , mPatch(patch){};
+ , mPatch(patch) {};
_Version(const std::string& versionStr)
{
std::istringstream stream(versionStr);