| commit | c72a9f6ad64a5b924d0ac6ca4de5c49c344060c2 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Wed Nov 11 10:56:26 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Wed Nov 11 10:57:50 2020 -0800 |
| tree | 67aaa2cb301dede45229b6678f0b7ed39238f533 | |
| parent | a91ac38a1509d86b0a3c95bfcad41df6799228f8 [diff] [blame] |
Update cxx::bridge modules to use extern "C++" as the ABI
diff --git a/src/exception.rs b/src/exception.rs index 0ffca66..f61e8fa 100644 --- a/src/exception.rs +++ b/src/exception.rs
@@ -1,7 +1,7 @@ use alloc::boxed::Box; use core::fmt::{self, Debug, Display}; -/// Exception thrown from an `extern "C"` function. +/// Exception thrown from an `extern "C++"` function. #[derive(Debug)] pub struct Exception { pub(crate) what: Box<str>,