diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-06-10 16:09:18 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-06-11 07:05:56 +1000 |
commit | 8fb29c91e6010d6baec5e0e7e60fba5ea55ff870 (patch) | |
tree | fc5589a58abd26a6bd45435daaacf8c6b943149d /components/util/mem.rs | |
parent | 44a4b7886d05b6e219f71f958d913657b08eea7d (diff) | |
download | servo-8fb29c91e6010d6baec5e0e7e60fba5ea55ff870.tar.gz servo-8fb29c91e6010d6baec5e0e7e60fba5ea55ff870.zip |
Updates for changes in rust-geom and rust-layers
Diffstat (limited to 'components/util/mem.rs')
-rw-r--r-- | components/util/mem.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/util/mem.rs b/components/util/mem.rs index 0ca80b51563..5ecd511bdcf 100644 --- a/components/util/mem.rs +++ b/components/util/mem.rs @@ -193,7 +193,7 @@ known_heap_size!(0, u8, u16, u32, u64, usize); known_heap_size!(0, i8, i16, i32, i64, isize); known_heap_size!(0, bool, f32, f64); -known_heap_size!(0, Rect<T>, Point2D<T>, Size2D<T>, Matrix2D<T>, SideOffsets2D<T>, Matrix4<T>); +known_heap_size!(0, Rect<T>, Point2D<T>, Size2D<T>, Matrix2D<T>, SideOffsets2D<T>); -known_heap_size!(0, Au, Color, Cursor); +known_heap_size!(0, Au, Color, Cursor, Matrix4); known_heap_size!(0, Range<T>); |