mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 04:20:13 +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:
@@ -16,8 +16,9 @@
|
||||
|
||||
#include "context-menu-target.h"
|
||||
|
||||
YaContextMenuTargetImpl::YaContextMenuTargetImpl(Vst3PluginBridge& bridge,
|
||||
const ConstructArgs&& args) noexcept
|
||||
YaContextMenuTargetImpl::YaContextMenuTargetImpl(
|
||||
Vst3PluginBridge& bridge,
|
||||
const ConstructArgs&& args) noexcept
|
||||
: YaContextMenuTarget(std::move(args)), bridge(bridge) {}
|
||||
|
||||
tresult PLUGIN_API
|
||||
|
||||
@@ -24,8 +24,9 @@ class Vst3PluginBridge;
|
||||
|
||||
class Vst3PluginFactoryProxyImpl : public Vst3PluginFactoryProxy {
|
||||
public:
|
||||
Vst3PluginFactoryProxyImpl(Vst3PluginBridge& bridge,
|
||||
Vst3PluginFactoryProxy::ConstructArgs&& args) noexcept;
|
||||
Vst3PluginFactoryProxyImpl(
|
||||
Vst3PluginBridge& bridge,
|
||||
Vst3PluginFactoryProxy::ConstructArgs&& args) noexcept;
|
||||
|
||||
/**
|
||||
* We'll override the query interface to log queries for interfaces we do
|
||||
|
||||
Reference in New Issue
Block a user