From a0dd1cf3ef0a7d3a4756af74c6bac1de131ea991 Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Wed, 15 Sep 2021 20:29:12 +0200 Subject: [PATCH] Remove unused variable --- src/utility.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utility.cpp b/src/utility.cpp index 1cf90593..a293743e 100644 --- a/src/utility.cpp +++ b/src/utility.cpp @@ -340,7 +340,6 @@ bool matchJson(const std::string &json1, const std::string &json2, bool compareSourceSettings(const OBSWeakSource &source, const std::string &settings, bool useRegex) { - bool ret = false; std::string currentSettings = getSourceSettings(source); return matchJson(currentSettings, settings, useRegex); }