Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #251 - DavidVonDerau:dvd/pub-bumpwrapper, r=Amanieu
Add `pub` modifier to `BumpWrapper`. Without this change, I'm seeing the following error when trying to use the `BumpWrapper` feature in my own code. ``` error[E0423]: cannot initialize a tuple struct which contains private fields | | HashSet::new_in(BumpWrapper(arena)) | ^^^^^^^^^^^ constructor is not visible here due to private fields ``` `arena` is of type `&Bump`, matching the example given in the `test_bumpalo` test: `HashMap::new_in(BumpWrapper(&bump));`.
- Loading branch information