From 493bf301ff861cc1ce52dc86e8204954c98f8f80 Mon Sep 17 00:00:00 2001 From: ddh0 Date: Sun, 14 Dec 2025 21:55:45 -0600 Subject: [PATCH] silence `missing initializer for member` --- src/llama-sampling.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/llama-sampling.cpp b/src/llama-sampling.cpp index 78fe7706b9..e044ef5898 100644 --- a/src/llama-sampling.cpp +++ b/src/llama-sampling.cpp @@ -2477,6 +2477,7 @@ struct llama_sampler * llama_sampler_init_power_law( /* .rng = */ std::mt19937(seed_cur), /* .weighted_sum = */ 0.0f, /* .total_weight = */ 0.0f, + /* .original_probs = */ {}, } ); }