summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-10-26 18:23:45 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-10-26 18:23:45 -0700
commitd5a27a0e0c6e64d1532443a6bd45b3416e7597fe (patch)
tree84610cc23f57bece7e6c9ad918b8be2402e0a9c5 /src/libsyntax
parentc7ec183b34805ba6af0c49581639b16dbd33e47a (diff)
downloadrust-d5a27a0e0c6e64d1532443a6bd45b3416e7597fe.tar.gz
rust-d5a27a0e0c6e64d1532443a6bd45b3416e7597fe.zip
rustc: Translate monomorphic intra-crate automatically-derived methods that follow the "eq" format
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast_map.rs b/src/libsyntax/ast_map.rs
index e63de5aefeb..38ccb64899c 100644
--- a/src/libsyntax/ast_map.rs
+++ b/src/libsyntax/ast_map.rs
@@ -74,7 +74,7 @@ enum ast_node {
     // Destructor for a class
     node_dtor(~[ty_param], @class_dtor, def_id, @path),
     node_block(blk),
-    node_struct_ctor(@struct_def, @item, @path)
+    node_struct_ctor(@struct_def, @item, @path),
 }
 
 type map = std::map::HashMap<node_id, ast_node>;