Stop using u/i suffixes in layout.

This commit is contained in:
Ms2ger 2015-04-02 15:14:09 +02:00
parent 7fabf6071e
commit a65c80231a
4 changed files with 5 additions and 6 deletions

View file

@ -92,8 +92,8 @@ impl ConstructionResult {
pub fn debug_id(&self) -> usize {
match self {
&ConstructionResult::None => 0u,
&ConstructionResult::ConstructionItem(_) => 0u,
&ConstructionResult::None => 0,
&ConstructionResult::ConstructionItem(_) => 0,
&ConstructionResult::Flow(ref flow_ref, _) => flow::base(&**flow_ref).debug_id(),
}
}