mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Fix missing autoformatting
At some point Doom Emacs broke on-save formatting with lsp-mode in certain circumstances, and I made these changes with wgrep so apparently they were never formatted.
This commit is contained in:
@@ -23,5 +23,6 @@ YaPlugInterfaceSupport::ConstructArgs::ConstructArgs(
|
|||||||
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IPlugInterfaceSupport>(
|
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IPlugInterfaceSupport>(
|
||||||
object)) {}
|
object)) {}
|
||||||
|
|
||||||
YaPlugInterfaceSupport::YaPlugInterfaceSupport(const ConstructArgs&& args) noexcept
|
YaPlugInterfaceSupport::YaPlugInterfaceSupport(
|
||||||
|
const ConstructArgs&& args) noexcept
|
||||||
: arguments(std::move(args)) {}
|
: arguments(std::move(args)) {}
|
||||||
|
|||||||
@@ -23,5 +23,6 @@ YaKeyswitchController::ConstructArgs::ConstructArgs(
|
|||||||
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IKeyswitchController>(
|
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IKeyswitchController>(
|
||||||
object)) {}
|
object)) {}
|
||||||
|
|
||||||
YaKeyswitchController::YaKeyswitchController(const ConstructArgs&& args) noexcept
|
YaKeyswitchController::YaKeyswitchController(
|
||||||
|
const ConstructArgs&& args) noexcept
|
||||||
: arguments(std::move(args)) {}
|
: arguments(std::move(args)) {}
|
||||||
|
|||||||
@@ -23,5 +23,6 @@ YaParameterFunctionName::ConstructArgs::ConstructArgs(
|
|||||||
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IParameterFunctionName>(
|
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IParameterFunctionName>(
|
||||||
object)) {}
|
object)) {}
|
||||||
|
|
||||||
YaParameterFunctionName::YaParameterFunctionName(const ConstructArgs&& args) noexcept
|
YaParameterFunctionName::YaParameterFunctionName(
|
||||||
|
const ConstructArgs&& args) noexcept
|
||||||
: arguments(std::move(args)) {}
|
: arguments(std::move(args)) {}
|
||||||
|
|||||||
@@ -23,5 +23,6 @@ YaPrefetchableSupport::ConstructArgs::ConstructArgs(
|
|||||||
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IPrefetchableSupport>(
|
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IPrefetchableSupport>(
|
||||||
object)) {}
|
object)) {}
|
||||||
|
|
||||||
YaPrefetchableSupport::YaPrefetchableSupport(const ConstructArgs&& args) noexcept
|
YaPrefetchableSupport::YaPrefetchableSupport(
|
||||||
|
const ConstructArgs&& args) noexcept
|
||||||
: arguments(std::move(args)) {}
|
: arguments(std::move(args)) {}
|
||||||
|
|||||||
@@ -20,8 +20,7 @@ YaUnitData::ConstructArgs::ConstructArgs() noexcept {}
|
|||||||
|
|
||||||
YaUnitData::ConstructArgs::ConstructArgs(
|
YaUnitData::ConstructArgs::ConstructArgs(
|
||||||
Steinberg::IPtr<Steinberg::FUnknown> object) noexcept
|
Steinberg::IPtr<Steinberg::FUnknown> object) noexcept
|
||||||
: supported(
|
: supported(Steinberg::FUnknownPtr<Steinberg::Vst::IUnitData>(object)) {}
|
||||||
Steinberg::FUnknownPtr<Steinberg::Vst::IUnitData>(object)) {}
|
|
||||||
|
|
||||||
YaUnitData::YaUnitData(const ConstructArgs&& args) noexcept
|
YaUnitData::YaUnitData(const ConstructArgs&& args) noexcept
|
||||||
: arguments(std::move(args)) {}
|
: arguments(std::move(args)) {}
|
||||||
|
|||||||
@@ -16,8 +16,9 @@
|
|||||||
|
|
||||||
#include "context-menu-target.h"
|
#include "context-menu-target.h"
|
||||||
|
|
||||||
YaContextMenuTargetImpl::YaContextMenuTargetImpl(Vst3PluginBridge& bridge,
|
YaContextMenuTargetImpl::YaContextMenuTargetImpl(
|
||||||
const ConstructArgs&& args) noexcept
|
Vst3PluginBridge& bridge,
|
||||||
|
const ConstructArgs&& args) noexcept
|
||||||
: YaContextMenuTarget(std::move(args)), bridge(bridge) {}
|
: YaContextMenuTarget(std::move(args)), bridge(bridge) {}
|
||||||
|
|
||||||
tresult PLUGIN_API
|
tresult PLUGIN_API
|
||||||
|
|||||||
@@ -24,8 +24,9 @@ class Vst3PluginBridge;
|
|||||||
|
|
||||||
class Vst3PluginFactoryProxyImpl : public Vst3PluginFactoryProxy {
|
class Vst3PluginFactoryProxyImpl : public Vst3PluginFactoryProxy {
|
||||||
public:
|
public:
|
||||||
Vst3PluginFactoryProxyImpl(Vst3PluginBridge& bridge,
|
Vst3PluginFactoryProxyImpl(
|
||||||
Vst3PluginFactoryProxy::ConstructArgs&& args) noexcept;
|
Vst3PluginBridge& bridge,
|
||||||
|
Vst3PluginFactoryProxy::ConstructArgs&& args) noexcept;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We'll override the query interface to log queries for interfaces we do
|
* We'll override the query interface to log queries for interfaces we do
|
||||||
|
|||||||
@@ -20,8 +20,9 @@
|
|||||||
|
|
||||||
class Vst3HostContextProxyImpl : public Vst3HostContextProxy {
|
class Vst3HostContextProxyImpl : public Vst3HostContextProxy {
|
||||||
public:
|
public:
|
||||||
Vst3HostContextProxyImpl(Vst3Bridge& bridge,
|
Vst3HostContextProxyImpl(
|
||||||
Vst3HostContextProxy::ConstructArgs&& args) noexcept;
|
Vst3Bridge& bridge,
|
||||||
|
Vst3HostContextProxy::ConstructArgs&& args) noexcept;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We'll override the query interface to log queries for interfaces we do
|
* We'll override the query interface to log queries for interfaces we do
|
||||||
|
|||||||
Reference in New Issue
Block a user