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 -1
View File
@@ -37,7 +37,7 @@ void llama_log_callback_default(ggml_log_level level, const char * text, void *
template <typename T>
struct no_init {
T value;
no_init() { /* do nothing */ }
no_init() = default;
};
struct time_meas {