summaryrefslogtreecommitdiffstats
path: root/include/ingen/Interface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 02:04:37 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 02:04:37 -0400
commitfcd8e976dddee4611ae563b4da19274b089b15ae (patch)
treea614a11e68ff88b67516a5e08028753c97ed1be2 /include/ingen/Interface.hpp
parentd2e4469c7239681a1b778dbc7ada656da9021e58 (diff)
downloadingen-fcd8e976dddee4611ae563b4da19274b089b15ae.tar.gz
ingen-fcd8e976dddee4611ae563b4da19274b089b15ae.tar.bz2
ingen-fcd8e976dddee4611ae563b4da19274b089b15ae.zip
Fix indentation
Diffstat (limited to 'include/ingen/Interface.hpp')
-rw-r--r--include/ingen/Interface.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/ingen/Interface.hpp b/include/ingen/Interface.hpp
index a705b830..79cfad63 100644
--- a/include/ingen/Interface.hpp
+++ b/include/ingen/Interface.hpp
@@ -73,16 +73,16 @@ public:
void bundle_end() { message(BundleEnd{_seq++}); }
void put(const URI& uri,
- const Properties& properties,
- Resource::Graph ctx = Resource::Graph::DEFAULT)
+ const Properties& properties,
+ Resource::Graph ctx = Resource::Graph::DEFAULT)
{
message(Put{_seq++, uri, properties, ctx});
}
void delta(const URI& uri,
- const Properties& remove,
- const Properties& add,
- Resource::Graph ctx = Resource::Graph::DEFAULT)
+ const Properties& remove,
+ const Properties& add,
+ Resource::Graph ctx = Resource::Graph::DEFAULT)
{
message(Delta{_seq++, uri, remove, add, ctx});
}
@@ -115,9 +115,9 @@ public:
}
void set_property(const URI& subject,
- const URI& predicate,
- const Atom& value,
- Resource::Graph ctx = Resource::Graph::DEFAULT)
+ const URI& predicate,
+ const Atom& value,
+ Resource::Graph ctx = Resource::Graph::DEFAULT)
{
message(SetProperty{_seq++, subject, predicate, value, ctx});
}