From 45e793eb17bf4778d30ab7e1c938b8af6a42ca7e Mon Sep 17 00:00:00 2001
From: Nicolas Pope <nwpope@utu.fi>
Date: Wed, 5 Jun 2019 16:44:17 +0300
Subject: [PATCH] Fix for windows error

---
 components/control/cpp/src/master.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/components/control/cpp/src/master.cpp b/components/control/cpp/src/master.cpp
index cba2234c2..004d2f7cf 100644
--- a/components/control/cpp/src/master.cpp
+++ b/components/control/cpp/src/master.cpp
@@ -47,23 +47,23 @@ void Master::set(const ftl::UUID &peer, const string &uri, json_t &value) {
 }
 
 vector<string> Master::getConfigurables() {
-
+	return {};
 }
 
 vector<string> Master::getConfigurables(const ftl::UUID &peer) {
-
+	return {};
 }
 
 vector<json_t> Master::get(const string &uri) {
-
+	return {};
 }
 
 json_t Master::getOne(const string &uri) {
-
+	return {};
 }
 
 json_t Master::get(const ftl::UUID &peer, const string &uri) {
-
+	return {};
 }
 
 void Master::watch(const string &uri, function<void()> f) {
-- 
GitLab