about summary refs log tree commit diff
path: root/src/comp/middle
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2011-05-18 16:15:38 -0700
committerGraydon Hoare <graydon@mozilla.com>2011-05-19 11:40:16 -0700
commitbb594a03a14d872f6b190c644ecccfa41792cb30 (patch)
treee40531f4cfde19d5c1b4bcb4b5c50ea3b5b7fd93 /src/comp/middle
parente16b097599ee73a909df7ffbbaaf30f25a7057e3 (diff)
downloadrust-bb594a03a14d872f6b190c644ecccfa41792cb30.tar.gz
rust-bb594a03a14d872f6b190c644ecccfa41792cb30.zip
remove now-unused ts field from ann
Diffstat (limited to 'src/comp/middle')
-rw-r--r--src/comp/middle/ty.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/middle/ty.rs b/src/comp/middle/ty.rs
index 65d603895a3..094af6d910f 100644
--- a/src/comp/middle/ty.rs
+++ b/src/comp/middle/ty.rs
@@ -1498,7 +1498,7 @@ fn ann_to_monotype(ctxt cx, &node_type_table ntt, ast::ann a) -> t {
 // Turns a type and optional type parameters into an annotation, using
 // defaults for other fields.
 fn mk_ann_type(uint node_id, t typ, option::t[vec[t]] tps) -> ast::ann {
-    ret rec(id=node_id, ty=typ, tps=tps, ts=none[@ts_ann]);
+    ret rec(id=node_id, ty=typ, tps=tps);
 }
 
 // Turns a type into an annotation, using defaults for other fields.