diff options
| author | Patrick Walton <[email protected]> | 2011-03-28 14:42:01 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-28 14:42:01 -0700 |
| commit | ace2c92a96eb4ac46913305854235592aa9207ae (patch) | |
| tree | 06bb55116d3934e60b5bb71a4610de54473b5808 /src/comp/front/creader.rs | |
| parent | rustc: Remove commented out "encode_tag_variant_info" call that sneaked in (diff) | |
| download | rust-ace2c92a96eb4ac46913305854235592aa9207ae.tar.xz rust-ace2c92a96eb4ac46913305854235592aa9207ae.zip | |
rustc: Populate the item types table with types of items from external crates; remove the redundant typeck.ty_and_params type on the way
Diffstat (limited to 'src/comp/front/creader.rs')
| -rw-r--r-- | src/comp/front/creader.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/comp/front/creader.rs b/src/comp/front/creader.rs index 9a7cc0b4..7dac3367 100644 --- a/src/comp/front/creader.rs +++ b/src/comp/front/creader.rs @@ -9,7 +9,6 @@ import lib.llvm.mk_section_iter; import middle.fold; import middle.metadata; import middle.ty; -import middle.typeck; import back.x86; import util.common; import util.common.span; @@ -522,7 +521,7 @@ fn lookup_def(session.session sess, &span sp, int cnum, vec[ast.ident] path) fail; } -fn get_type(session.session sess, ast.def_id def) -> typeck.ty_and_params { +fn get_type(session.session sess, ast.def_id def) -> ty.ty_params_and_ty { // FIXME: fill in. fail; } |