From: Haiyue Wang Date: Mon, 22 Sep 2025 08:48:42 +0000 (+0800) Subject: common : remove unused local variables (#16140) X-Git-Tag: upstream/0.0.6641~96 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=d05affbab7d1364fa7ac06c03cd33f03235ae840;p=pkg%2Fggml%2Fsources%2Fllama.cpp common : remove unused local variables (#16140) These two local variables 'arg' and 'arg_prefix' have been overriden by: 1. for (const auto & arg : opt.args) 2. for (int i = 1; i < argc; i++) { const std::string arg_prefix = "--"; std::string arg = argv[i]; --- diff --git a/common/arg.cpp b/common/arg.cpp index 54df2df8..61233687 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -1068,8 +1068,6 @@ static std::string get_all_kv_cache_types() { // static bool common_params_parse_ex(int argc, char ** argv, common_params_context & ctx_arg) { - std::string arg; - const std::string arg_prefix = "--"; common_params & params = ctx_arg.params; std::unordered_map arg_to_options;