gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 08140da713108c0188e6c558678eb61764850c1a
parent f2c1a42bfb82f8cc0a3ecdfe9251ff5b98627ae6
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 20 Feb 2025 23:04:24 +0100

fix coding style

Diffstat:
Msource/jucePluginEditorLib/filetype.cpp | 2+-
Msource/jucePluginEditorLib/filetype.h | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/jucePluginEditorLib/filetype.cpp b/source/jucePluginEditorLib/filetype.cpp @@ -9,7 +9,7 @@ namespace jucePluginEditorLib bool FileType::operator==(const FileType& _other) const { - return baseLib::filesystem::lowercase(type) == baseLib::filesystem::lowercase(_other.type); + return baseLib::filesystem::lowercase(m_type) == baseLib::filesystem::lowercase(_other.m_type); } bool FileType::operator!=(const FileType& _other) const diff --git a/source/jucePluginEditorLib/filetype.h b/source/jucePluginEditorLib/filetype.h @@ -10,7 +10,7 @@ namespace jucePluginEditorLib static const FileType Syx; static const FileType Mid; - explicit FileType(std::string _type) : type(std::move(_type)) + explicit FileType(std::string _type) : m_type(std::move(_type)) { } @@ -18,6 +18,6 @@ namespace jucePluginEditorLib bool operator != (const FileType& _other) const; private: - std::string type; + std::string m_type; }; }