From d56c03875a5fb3a931854481900e6fe18a3202bd Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Mon, 20 Feb 2023 20:51:27 +0100 Subject: [PATCH] chore: Remove now superfluous "this->" in lambda It was needed for compatibility with older compilers. --- src/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index a28d56473..3312ac813 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -655,7 +655,7 @@ Config::update_from_file(const std::string& path) return parse_config_file( path, [&](const auto& /*line*/, const auto& key, const auto& value) { if (!key.empty()) { - this->set_item(key, value, std::nullopt, false, path); + set_item(key, value, std::nullopt, false, path); } }); } -- 2.47.2