]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
arg : fix unused variable (#13142)
authorXuan-Son Nguyen <redacted>
Mon, 28 Apr 2025 05:16:59 +0000 (07:16 +0200)
committerGitHub <redacted>
Mon, 28 Apr 2025 05:16:59 +0000 (08:16 +0300)
common/arg.cpp

index de173159f4a76b9a30676658687794e083dc5abf..27401492122786cb6b5395bad8c92ffdb247a840 100644 (file)
@@ -673,7 +673,7 @@ static struct common_hf_file_res common_get_hf_file(const std::string &, const s
     return {};
 }
 
-std::pair<long, std::vector<char>> common_remote_get_content(const std::string & url, const common_remote_params & params) {
+std::pair<long, std::vector<char>> 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");
 }