| commit | 61a9fdf313f7880669b6812cc0861bed3e95d970 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Fri Apr 24 16:19:42 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Sat Apr 25 18:02:13 2020 -0700 |
| tree | 4a4feb2c82b46bed1d76eccabf47fc7fab8a9c05 | |
| parent | 347c3d01f4d6f8e23a75703be85be3998d7be1e0 [diff] [blame] |
Be explit about binding only default vector allocator
diff --git a/src/cxx_vector.rs b/src/cxx_vector.rs index f7fb5ac..8a73c7e 100644 --- a/src/cxx_vector.rs +++ b/src/cxx_vector.rs
@@ -1,6 +1,6 @@ use std::mem; -/// Binding to C++ `std::vector<T>`. +/// Binding to C++ `std::vector<T, std::allocator<T>>`. /// /// # Invariants ///