summaryrefslogtreecommitdiffstats
path: root/ingen/client/PluginModel.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-18 12:02:29 +0200
committerDavid Robillard <d@drobilla.net>2020-08-01 11:50:43 +0200
commit727020da03e5212e803373c20a4fbd9b4e51b55c (patch)
treef70be41bbf1cab63c822bd9e9bd41ab410aadd1a /ingen/client/PluginModel.hpp
parentf91c823b73ad74fe9d1b6785ec6c17db1713ca35 (diff)
downloadingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.gz
ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.bz2
ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.zip
Remove superfluous semicolons
Diffstat (limited to 'ingen/client/PluginModel.hpp')
-rw-r--r--ingen/client/PluginModel.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp
index 5f43b3c4..142f28bf 100644
--- a/ingen/client/PluginModel.hpp
+++ b/ingen/client/PluginModel.hpp
@@ -95,9 +95,9 @@ public:
static Sord::World* rdf_world() { return _rdf_world; }
// Signals
- INGEN_SIGNAL(changed, void);
- INGEN_SIGNAL(property, void, const URI&, const Atom&);
- INGEN_SIGNAL(preset, void, const URI&, const std::string&);
+ INGEN_SIGNAL(changed, void)
+ INGEN_SIGNAL(property, void, const URI&, const Atom&)
+ INGEN_SIGNAL(preset, void, const URI&, const std::string&)
bool fetched() const { return _fetched; }
void set_fetched(bool f) { _fetched = f; }