From: Xuan-Son Nguyen Date: Mon, 28 Apr 2025 05:16:59 +0000 (+0200) Subject: arg : fix unused variable (#13142) X-Git-Tag: upstream/0.0.5318~117 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=85f36e5e7173eef7c671c778db44c034e1d0ab19;p=pkg%2Fggml%2Fsources%2Fllama.cpp arg : fix unused variable (#13142) --- diff --git a/common/arg.cpp b/common/arg.cpp index de173159..27401492 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -673,7 +673,7 @@ static struct common_hf_file_res common_get_hf_file(const std::string &, const s return {}; } -std::pair> common_remote_get_content(const std::string & url, const common_remote_params & params) { +std::pair> common_remote_get_content(const std::string &, const common_remote_params &) { throw std::runtime_error("error: built without CURL, cannot download model from the internet"); }