Fix indentation in InheritTypes.

This commit is contained in:
Ms2ger 2015-02-15 22:37:59 +01:00
parent 05db1a4499
commit c54e79b2f2

View file

@ -5242,10 +5242,10 @@ class GlobalGenRoots():
impl ${selfName} for ${baseName} {
#[inline]
fn ${fname}(&self) -> bool {
let base: &${parentName} = ${parentName}Cast::from_actual(self);
let base: &${parentName} = ${parentName}Cast::from_actual(self);
base.${fname}()
}
}\
}
""").substitute({'fname': 'is_' + name.lower(),
'selfName': name + 'Derived',
'baseName': protoDescriptor.concreteType,