about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-12-06 19:12:25 -0800
committerBrian Anderson <banderson@mozilla.com>2012-12-07 15:54:17 -0800
commitecdc8aae4193a4306b379803897ff367f1f65379 (patch)
treebcdee37054ae4c580f25c3cf1fc771d9343ab7cd /src/libsyntax/parse/parser.rs
parent2fcf562d163e57acdc4a7e5b0504df2dea6e34e6 (diff)
downloadrust-ecdc8aae4193a4306b379803897ff367f1f65379.tar.gz
rust-ecdc8aae4193a4306b379803897ff367f1f65379.zip
Remove impl_id from trait_ref. Unused
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 86907706bbf..36f5bbe4819 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -2821,7 +2821,7 @@ impl Parser {
 
     fn parse_trait_ref() -> @trait_ref {
         @{path: self.parse_path_with_tps(false),
-          ref_id: self.get_id(), impl_id: self.get_id()}
+          ref_id: self.get_id()}
     }
 
     fn parse_trait_ref_list(ket: token::Token) -> ~[@trait_ref] {