remove more heapsize ignores

This commit is contained in:
Manish Goregaokar 2015-05-27 22:24:49 +05:30
parent a5975e8f33
commit 5447d2af3d
6 changed files with 10 additions and 15 deletions

View file

@ -43,7 +43,7 @@ macro_rules! define_numbered_css_keyword_enum {
};
($name: ident: $( $css: expr => $variant: ident = $value: expr ),+) => {
#[allow(non_camel_case_types)]
#[derive(Clone, Eq, PartialEq, PartialOrd, Ord, Copy, RustcEncodable, Debug)]
#[derive(Clone, Eq, PartialEq, PartialOrd, Ord, Copy, RustcEncodable, Debug, HeapSizeOf)]
pub enum $name {
$( $variant = $value ),+
}