From 5b54fee0425a341f3b8c02cf60c73e0328a9d409 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:22:26 +0800 Subject: [PATCH] fixed compile issue --- otherarch/ttscpp/src/ttscpp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/otherarch/ttscpp/src/ttscpp.cpp b/otherarch/ttscpp/src/ttscpp.cpp index a731471c0..eb8833794 100644 --- a/otherarch/ttscpp/src/ttscpp.cpp +++ b/otherarch/ttscpp/src/ttscpp.cpp @@ -338,9 +338,9 @@ static void zeros(std::ofstream & file, size_t n) { } template -struct no_init { +struct do_no_init { T value; - no_init() { /* do nothing */ } + do_no_init() { /* do nothing */ } }; void quantize_gguf(const std::string & ifile, const std::string & ofile, struct quantization_params * params) { @@ -376,7 +376,7 @@ void quantize_gguf(const std::string & ifile, const std::string & ofile, struct } } - std::vector> work; + std::vector> work; std::ofstream fout; auto close_ofstream = [&]() {