diff options
author | David Robillard <d@drobilla.net> | 2022-08-18 02:04:37 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 02:04:37 -0400 |
commit | fcd8e976dddee4611ae563b4da19274b089b15ae (patch) | |
tree | a614a11e68ff88b67516a5e08028753c97ed1be2 | |
parent | d2e4469c7239681a1b778dbc7ada656da9021e58 (diff) | |
download | ingen-fcd8e976dddee4611ae563b4da19274b089b15ae.tar.gz ingen-fcd8e976dddee4611ae563b4da19274b089b15ae.tar.bz2 ingen-fcd8e976dddee4611ae563b4da19274b089b15ae.zip |
Fix indentation
-rw-r--r-- | include/ingen/Interface.hpp | 16 |
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}); } |