diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 12:07:42 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 12:07:42 -0700 |
| commit | 699b14b99d9892f3573ee8a69c3c24b7af93ecdd (patch) | |
| tree | 820bd88971a59741bf8ca36d2485c4489d9c805f | |
| parent | 730381d936ddbfff12a9bf5c83a75623b14e5bad (diff) | |
| download | rust-699b14b99d9892f3573ee8a69c3c24b7af93ecdd.tar.gz rust-699b14b99d9892f3573ee8a69c3c24b7af93ecdd.zip | |
Comments only: annotate a FIXME and remove an obsolete one
| -rw-r--r-- | src/rustc/middle/typeck/collect.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/middle/typeck/collect.rs b/src/rustc/middle/typeck/collect.rs index afc79b52428..81e1e3057de 100644 --- a/src/rustc/middle/typeck/collect.rs +++ b/src/rustc/middle/typeck/collect.rs @@ -26,7 +26,7 @@ import rscope::*; fn collect_item_types(ccx: @crate_ctxt, crate: @ast::crate) { // FIXME: hooking into the "intrinsic" root module is crude. - // there ought to be a better approach. Attributes? + // there ought to be a better approach. Attributes? (#2592) for crate.node.module.items.each {|crate_item| if *crate_item.ident == "intrinsic" { @@ -389,7 +389,7 @@ fn convert(ccx: @crate_ctxt, it: @ast::item) { ty: t_dtor}); }; ensure_iface_methods(ccx, it.id); - /* FIXME: check for proper public/privateness */ + // Write the type of each of the members let (fields, methods) = split_class_items(members); for fields.each {|f| |
