ggml, llama : use defaulted constructors/destructors (#17649)

This commit is contained in:
Herman Semenoff
2025-12-03 07:12:18 +01:00
committed by GitHub
parent 16cc3c606e
commit 37adc9c6ba
4 changed files with 6 additions and 7 deletions
+1 -2
View File
@@ -3253,8 +3253,7 @@ void llama_vocab::impl::print_info() const {
llama_vocab::llama_vocab() : pimpl(new impl(*this)) {
}
llama_vocab::~llama_vocab() {
}
llama_vocab::~llama_vocab() = default;
void llama_vocab::load(llama_model_loader & ml, const LLM_KV & kv) {
pimpl->load(ml, kv);