| commit | 9f6c075e3ccadb38ed73b416c8eaf1122e16afde | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Mon Sep 07 22:26:46 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Mon Sep 07 22:31:03 2020 -0700 |
| tree | 3133d606465efd2aba884df2dbfdb88fbacbe5cd | |
| parent | 7aa5e21ab799f689de0a94fd35a03e90e28d6745 [diff] [blame] |
Inline cxx-symbols crate into cxx The separation is no longer needed for Buck when linking with lld.
diff --git a/src/rust_vec.rs b/src/rust_vec.rs index 5e7082a..6f1d567 100644 --- a/src/rust_vec.rs +++ b/src/rust_vec.rs
@@ -3,7 +3,7 @@ #[repr(C)] pub struct RustVec<T> { - repr: Vec<T>, + pub(crate) repr: Vec<T>, } impl<T> RustVec<T> {