diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-10-10 12:57:34 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-10-10 18:04:58 -0700 |
| commit | b70306158ff41706e08c691596087502ba40f635 (patch) | |
| tree | ddd4423a7b803d445042b9ad99a7e97ce9d282c9 /src/libsyntax/fold.rs | |
| parent | 34d123db4eb03c1b2378b6248ebea5f0f40f2a4f (diff) | |
| download | rust-b70306158ff41706e08c691596087502ba40f635.tar.gz rust-b70306158ff41706e08c691596087502ba40f635.zip | |
Remove named extern blocks from the AST
There's currently a fair amount of code which is being ignored on unnamed blocks (which are the default now), and I opted to leave it commented out for now. I intend on very soon revisiting on how we perform linking with extern crates in an effort to support static linking.
Diffstat (limited to 'src/libsyntax/fold.rs')
| -rw-r--r-- | src/libsyntax/fold.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/fold.rs b/src/libsyntax/fold.rs index 3c601196db9..84ff98b0188 100644 --- a/src/libsyntax/fold.rs +++ b/src/libsyntax/fold.rs @@ -289,7 +289,6 @@ pub trait ast_fold { fn fold_foreign_mod(&self, nm: &foreign_mod) -> foreign_mod { ast::foreign_mod { - sort: nm.sort, abis: nm.abis, view_items: nm.view_items .iter() |
