Make geckolib possible to build on stable Rust

This commit is contained in:
Simon Sapin 2016-07-05 14:53:37 +02:00
parent bb916bb38b
commit 2d52b13f2f
6 changed files with 28 additions and 14 deletions

View file

@ -206,7 +206,8 @@
use cssparser::ToCss;
use std::fmt;
#[derive(Debug, Clone, PartialEq, HeapSizeOf)]
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
pub struct T(pub Vec<${to_camel_case(name)}>);
impl ToCss for T {