From 4da973c25b53cf990f65aa8e678ff9d5eb18128f Mon Sep 17 00:00:00 2001 From: Owen Green Date: Tue, 12 Jan 2021 11:32:44 +0000 Subject: [PATCH] Amend server side RT query Unit name So that it can be a legal sclang class name --- include/wrapper/NonRealtime.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wrapper/NonRealtime.hpp b/include/wrapper/NonRealtime.hpp index 254f19b..2695cd2 100644 --- a/include/wrapper/NonRealtime.hpp +++ b/include/wrapper/NonRealtime.hpp @@ -807,7 +807,7 @@ namespace impl { static const char* name() { - static std::string n = std::string(Wrapper::getName()) + "/query"; + static std::string n = std::string(Wrapper::getName()) + "Query"; return n.c_str(); }