aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/mem.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-06-10 16:05:20 -0600
committerbors-servo <metajack+bors@gmail.com>2015-06-10 16:05:20 -0600
commit752e03a502413f21cfb30e55d68110c50e034da6 (patch)
tree219c49f7f1a24b0165d1517e9a095adbe6b26035 /components/util/mem.rs
parent93a45c91d16c0ae2c6b7e507f66a7267206772ac (diff)
parent899ab226def56eb1c0abe533f4200da0a4a01691 (diff)
downloadservo-752e03a502413f21cfb30e55d68110c50e034da6.tar.gz
servo-752e03a502413f21cfb30e55d68110c50e034da6.zip
Auto merge of #6331 - glennw:remove-generic-again, r=pcwalton
<!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6331) <!-- Reviewable:end -->
Diffstat (limited to 'components/util/mem.rs')
-rw-r--r--components/util/mem.rs4
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>);