diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-03-28 22:46:16 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-03-28 22:46:16 +0100 |
commit | 9904216d76ac8a44f8afd4733df792bad82a8aba (patch) | |
tree | d71de9dcddcff25c287fca890a31e457e3476fc3 /components/layout/traversal.rs | |
parent | d521cd006ef3e7120c81d8a96efd42e55aed5abd (diff) | |
download | servo-9904216d76ac8a44f8afd4733df792bad82a8aba.tar.gz servo-9904216d76ac8a44f8afd4733df792bad82a8aba.zip |
Use u32 for generation numbers.
Diffstat (limited to 'components/layout/traversal.rs')
-rw-r--r-- | components/layout/traversal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs index a206bf75b4a..4474cc684a6 100644 --- a/components/layout/traversal.rs +++ b/components/layout/traversal.rs @@ -28,7 +28,7 @@ use std::mem; /// Every time we do another layout, the old bloom filters are invalid. This is /// detected by ticking a generation number every layout. -type Generation = uint; +type Generation = u32; /// A pair of the bloom filter used for css selector matching, and the node to /// which it applies. This is used to efficiently do `Descendant` selector |