From: Joel Rosdahl Date: Mon, 20 Feb 2023 19:51:27 +0000 (+0100) Subject: chore: Remove now superfluous "this->" in lambda X-Git-Tag: v4.8~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d56c03875a5fb3a931854481900e6fe18a3202bd;p=thirdparty%2Fccache.git chore: Remove now superfluous "this->" in lambda It was needed for compatibility with older compilers. --- 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); } }); }