summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 01:27:51 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 01:27:51 -0400
commit590f82cba0752f41226bbdbf352753cf336ec758 (patch)
tree5de55e3999108093331e37327c762996e2795b88 /include
parent126c045016602323b974484252d60f6077f156bf (diff)
downloadingen-590f82cba0752f41226bbdbf352753cf336ec758.tar.gz
ingen-590f82cba0752f41226bbdbf352753cf336ec758.tar.bz2
ingen-590f82cba0752f41226bbdbf352753cf336ec758.zip
Use a consistent style for empty braces
Diffstat (limited to 'include')
-rw-r--r--include/ingen/QueuedInterface.hpp3
-rw-r--r--include/ingen/client/GraphModel.hpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/include/ingen/QueuedInterface.hpp b/include/ingen/QueuedInterface.hpp
index d4c52168..fc3e539c 100644
--- a/include/ingen/QueuedInterface.hpp
+++ b/include/ingen/QueuedInterface.hpp
@@ -37,8 +37,7 @@ class QueuedInterface : public Interface
public:
explicit QueuedInterface(std::shared_ptr<Interface> sink)
: _sink(std::move(sink))
- {
- }
+ {}
URI uri() const override { return URI("ingen:/QueuedInterface"); }
diff --git a/include/ingen/client/GraphModel.hpp b/include/ingen/client/GraphModel.hpp
index 59d1bb65..0ae756d8 100644
--- a/include/ingen/client/GraphModel.hpp
+++ b/include/ingen/client/GraphModel.hpp
@@ -71,8 +71,7 @@ private:
: BlockModel(uris,
static_cast<const URI&>(uris.ingen_Graph),
graph_path)
- {
- }
+ {}
void clear() override;
void add_child(const std::shared_ptr<ObjectModel>& c) override;