diff options
author | Nicholas Nethercote <nnethercote@mozilla.com> | 2017-10-18 14:26:56 +1100 |
---|---|---|
committer | Nicholas Nethercote <nnethercote@mozilla.com> | 2017-10-18 14:26:56 +1100 |
commit | a26d25db12ad25276df16362a1a4e7ab33347952 (patch) | |
tree | a59a8fa59b40df342d44517fb11e75f696d90aa1 /components/style/gecko_string_cache | |
parent | ac74cd57a257fc95e0513524e196c91807c18bba (diff) | |
download | servo-a26d25db12ad25276df16362a1a4e7ab33347952.tar.gz servo-a26d25db12ad25276df16362a1a4e7ab33347952.zip |
Rename `size_of_is_0!` as `malloc_size_of_is_0!`.
The new name makes it clearer that it comes from the `malloc_size_of`
crate.
Diffstat (limited to 'components/style/gecko_string_cache')
-rw-r--r-- | components/style/gecko_string_cache/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/gecko_string_cache/mod.rs b/components/style/gecko_string_cache/mod.rs index d48b679ceaf..8346c7491f2 100644 --- a/components/style/gecko_string_cache/mod.rs +++ b/components/style/gecko_string_cache/mod.rs @@ -389,4 +389,4 @@ impl From<*mut nsAtom> for Atom { } } -size_of_is_0!(Atom); +malloc_size_of_is_0!(Atom); |