diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-05-18 09:48:58 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-05-18 09:49:13 +0200 |
commit | c769d1b3db1753e2cc9089d09383e18c8ae3416e (patch) | |
tree | d040b2c2d852fc00e239a3d291bb6bde6f1b78cb | |
parent | ea14bb1233acbfa65919574e7d61c495ef5fc336 (diff) |
parser: Remove old debug println!
-rw-r--r-- | src/parser.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index e3ca0635..0a40a13e 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -222,7 +222,6 @@ fn opaque_decl(ctx: &mut ClangParserCtx, decl: &Cursor) { } let name = decl_name(ctx, decl); - println!("{:?}", name); ctx.current_module_mut().globals.push(name); } |