From 13df4186ed8a6c522e4b86c0235b4997eb9ef175 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 17 Jun 2015 17:23:43 -0400 Subject: [PATCH] remove debugging printfs --- src/normalize/macro_expand/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/normalize/macro_expand/mod.rs b/src/normalize/macro_expand/mod.rs index 2318d9e..7f821a5 100644 --- a/src/normalize/macro_expand/mod.rs +++ b/src/normalize/macro_expand/mod.rs @@ -49,9 +49,6 @@ impl MacroExpander { fn expand(&mut self, items: &mut Vec) -> NormResult<()> { let mut counter = 0; loop { - println!("Next round: counter={} items.len()={}", - counter, items.len()); - // Find any macro uses in items added since last round and // replace them in place with the expanded version: for item in &mut items[counter..] { @@ -66,7 +63,6 @@ impl MacroExpander { // Drain expansion stack: while let Some(sym) = self.expansion_stack.pop() { - println!("Drained {:?}", sym); match sym { Symbol::Macro(msym) => items.push(try!(self.expand_macro_symbol(msym))),