From c4d7cb7a132a59804a2bb1fc0e5ef3e676dc5431 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 1 Aug 2020 14:02:55 +0200 Subject: Fix multiple declarations on a single line --- src/client/ClientStore.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/client') 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); -- cgit v1.2.1