diff options
Diffstat (limited to 'components/malloc_size_of')
-rw-r--r-- | components/malloc_size_of/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/malloc_size_of/lib.rs b/components/malloc_size_of/lib.rs index fe988e78f6c..808ffb755dc 100644 --- a/components/malloc_size_of/lib.rs +++ b/components/malloc_size_of/lib.rs @@ -42,6 +42,9 @@ //! 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 +//! publishing this crate on crates.io. extern crate app_units; #[cfg(feature = "servo")] |