about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2014-03-08 18:33:39 +0200
committerEduard Burtescu <edy.burt@gmail.com>2014-03-13 14:21:45 +0200
commitfeedd37653b32a97e2d10c12f2cf1b14c0058c19 (patch)
tree997596ecd199435548ac2caed69f18c09403ec3f /src/libsyntax
parent26398b4f6d7b9016f1ddb6c23b5090cd98f1fa2e (diff)
downloadrust-feedd37653b32a97e2d10c12f2cf1b14c0058c19.tar.gz
rust-feedd37653b32a97e2d10c12f2cf1b14c0058c19.zip
Apply @nikomatsakis' nits and comments patch.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index b6b18f6671d..7fef6da5607 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -354,7 +354,7 @@ pub enum Pat_ {
     PatVec(Vec<@Pat> , Option<@Pat>, Vec<@Pat> )
 }
 
-#[deriving(Clone, Eq, Encodable, Decodable, Hash)]
+#[deriving(Clone, Eq, Encodable, Decodable, Hash, Show)]
 pub enum Mutability {
     MutMutable,
     MutImmutable,