diff options
| author | Michael Sullivan <sully@msully.net> | 2013-07-29 14:19:04 -0700 |
|---|---|---|
| committer | Michael Sullivan <sully@msully.net> | 2013-08-05 11:41:06 -0700 |
| commit | a20081666becc9c48b8818a493349c20c480ef06 (patch) | |
| tree | b6d543b8add16122162c61941a71e446fa952881 /src/libsyntax | |
| parent | bcf62e790151eda088896cd5aeda4b727ec1572a (diff) | |
| download | rust-a20081666becc9c48b8818a493349c20c480ef06.tar.gz rust-a20081666becc9c48b8818a493349c20c480ef06.zip | |
Fix an unused variable warning and clean up some dead code/names.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index 11d3740be3f..84e6544f780 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -410,7 +410,7 @@ impl IdVisitor { impl Visitor<()> for IdVisitor { fn visit_mod(@mut self, module: &_mod, - span: span, + _span: span, node_id: NodeId, env: ()) { (self.visit_callback)(node_id); |
