summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 14:02:55 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commitc4d7cb7a132a59804a2bb1fc0e5ef3e676dc5431 (patch)
tree5e0ea075019fc3d3d9ad47a84ce63d140dd038b7 /src/client
parent2539411f2fd0f73b57bd3a8785e10228b32b3c93 (diff)
downloadingen-c4d7cb7a132a59804a2bb1fc0e5ef3e676dc5431.tar.gz
ingen-c4d7cb7a132a59804a2bb1fc0e5ef3e676dc5431.tar.bz2
ingen-c4d7cb7a132a59804a2bb1fc0e5ef3e676dc5431.zip
Fix multiple declarations on a single line
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 64489b49..e494e874 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -245,7 +245,10 @@ ClientStore::operator()(const Put& msg)
const auto& uri = msg.uri;
const auto& properties = msg.properties;
- bool is_graph, is_block, is_port, is_output;
+ bool is_block = false;
+ bool is_graph = false;
+ bool is_output = false;
+ bool is_port = false;
Resource::type(uris(), properties,
is_graph, is_block, is_port, is_output);