Remove warnings

This commit is contained in:
Alexander Bock
2021-05-25 22:06:49 +02:00
parent d2f9530885
commit cb17bd7570
22 changed files with 81 additions and 58 deletions

View File

@@ -36,8 +36,9 @@ public:
void handleJson(const nlohmann::json& json) override;
bool isDone() const override;
private:
void runScript(const std::string& script, bool returnValue);
void runScript(std::string script, bool returnValue);
bool _waitingForReturnValue = true;
};