From 1e2d8909a3fe3b824396658e92d8e06a76b3465a Mon Sep 17 00:00:00 2001 From: Yosshi999 Date: Thu, 21 Nov 2024 23:22:48 +0900 Subject: [PATCH] change doc to allow uninitialized array --- crates/voicevox_core_c_api/src/compatible_engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/voicevox_core_c_api/src/compatible_engine.rs b/crates/voicevox_core_c_api/src/compatible_engine.rs index 6423945c6..d973eede6 100644 --- a/crates/voicevox_core_c_api/src/compatible_engine.rs +++ b/crates/voicevox_core_c_api/src/compatible_engine.rs @@ -364,7 +364,7 @@ pub unsafe extern "C" fn decode_forward( /// - `f0`はRustの`&[f32; length as usize]`として解釈できなければならない。 /// - `phoneme`はRustの`&[f32; phoneme_size * length as usize]`として解釈できなければならない。 /// - `speaker_id`はRustの`&[i64; 1]`として解釈できなければならない。 -/// - `output`はRustの`&mut [f32; ((length + 2 * margin_width) * feature_dim) as usize]`として解釈できなければならない。 +/// - `output`はRustの`&mut [MaybeUninit; ((length + 2 * margin_width) * feature_dim) as usize]`として解釈できなければならない。 #[unsafe(no_mangle)] // SAFETY: voicevox_core_c_apiを構成するライブラリの中に、これと同名のシンボルは存在しない pub unsafe extern "C" fn generate_full_intermediate( length: i64,