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 = [&]() {