author | Emilio Cobos Álvarez <emilio@crisal.io> |
Sun, 23 Jun 2019 12:39:12 +0200 | |
changeset 479903 | d646d7beb29db6ccfe4b699952666d12896b2c90 |
parent 479902 | f7addc19e0ae6fb0f14a99d493e11eaab4725952 |
child 479904 | 920eb58d6dfa67b2ba01a5cb6770d0a407dc8993 |
push id | 88354 |
push user | emilio@crisal.io |
push date | Sun, 23 Jun 2019 11:28:20 +0000 |
treeherder | autoland@4ed761cebb7f [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1560777 |
milestone | 69.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/servo/components/malloc_size_of/lib.rs +++ b/servo/components/malloc_size_of/lib.rs @@ -38,17 +38,17 @@ //! trait. //! - If an `Rc` or `Arc` should be measured only if it hasn't been seen //! before, it should be measured via the `MallocConditionalSizeOf` trait. //! - Using universal function call syntax is a good idea when measuring boxed //! fields in structs, because it makes it clear that the Box is being //! measured as well as the thing it points to. E.g. //! `<Box<_> as MallocSizeOf>::size_of(field, ops)`. //! -//! Note: WebRender has a reduced for of this crate, so that we can avoid +//! Note: WebRender has a reduced fork of this crate, so that we can avoid //! publishing this crate on crates.io. extern crate app_units; #[cfg(feature = "servo")] extern crate crossbeam_channel; extern crate cssparser; extern crate euclid; extern crate hashglobe;