Skip to content

Replace Arc<Box<dyn Scheme>> with Arc<dyn Scheme>.

Jacob Lorentzon requested to merge 4lDO2/kernel:schemes-no-arc-box into master

Removes one level of indirection, by replacing the type of the entries in the scheme BTreeMap, from Arc<Box<dyn Scheme + Send + Sync>> with Arc<dyn Scheme + Send + Sync.

Merge request reports