mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	llama : replacing auto &kv with const auto &kv (#2041)
* Replacing auto &kv with const auto &kv * Create codacy.yml * Delete codacy.yml
This commit is contained in:
		| @@ -2723,7 +2723,7 @@ int llama_apply_lora_from_file_internal(const struct llama_model & model, const | |||||||
|  |  | ||||||
|     // create a name -> tensor map of the model to accelerate lookups |     // create a name -> tensor map of the model to accelerate lookups | ||||||
|     std::unordered_map<std::string, struct ggml_tensor*> model_tensors; |     std::unordered_map<std::string, struct ggml_tensor*> model_tensors; | ||||||
|     for (auto & kv: model.tensors_by_name) { |     for (const auto & kv: model.tensors_by_name) { | ||||||
|         model_tensors.insert(kv); |         model_tensors.insert(kv); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 m3ndax
					m3ndax