Skip to content

Commit

Permalink
メッセージを更新
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Sep 29, 2023
1 parent 2c9f644 commit 2561fda
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/voicevox_core_c_api/src/drop_check.rs
Original file line number Diff line number Diff line change
@@ -50,8 +50,8 @@ impl CStringDropChecker {
let duplicated = !owned_str_addrs.insert(ptr as usize);
assert!(
!duplicated,
"{ptr:p}として管理される別の文字列が存在しています。原因としては文字列が誤った形で解放\
されたことが考えられます。このライブラリで生成したオブジェクトの解放は、このライブラリ\
"別の{ptr:p}が管理下にあります。原因としては以前の文字列{ptr:p}が誤った形で解放された\
ことが考えられます。このライブラリで生成したオブジェクトの解放は、このライブラリ\
が提供するAPIで行われなくてはなりません",
);
s
4 changes: 2 additions & 2 deletions crates/voicevox_core_c_api/src/slice_owner.rs
Original file line number Diff line number Diff line change
@@ -49,8 +49,8 @@ impl<T> SliceOwner<T> {
let duplicated = slices.insert(ptr as usize, slice.into()).is_some();
assert!(
!duplicated,
"{ptr:p}として管理される別の配列が存在しています。原因としては配列が誤った形で解放\
されたことが考えられます。このライブラリで生成したオブジェクトの解放は、このライブラリ\
"別の{ptr:p}が管理下にあります。原因としては以前の配列{ptr:p}が誤った形で解放された\
ことが考えられます。このライブラリで生成したオブジェクトの解放は、このライブラリ\
が提供するAPIで行われなくてはなりません",
);

0 comments on commit 2561fda

Please sign in to comment.