about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2013-11-08 15:52:36 -0500
committerNiko Matsakis <niko@alum.mit.edu>2013-11-08 19:47:57 -0500
commitf36a891fe22f656454b70b8f2aa64bef9133e7f0 (patch)
tree4482bfb8253edccb0595238adf01c57d0e6bd7d0 /src/libsyntax
parentbc3e84250868dff44ce0ea0919d9db8549dddf32 (diff)
downloadrust-f36a891fe22f656454b70b8f2aa64bef9133e7f0.tar.gz
rust-f36a891fe22f656454b70b8f2aa64bef9133e7f0.zip
Address comments from @pnkfelix (thanks for the detailed review)
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index df9ab083bf2..88a8bbf7cf2 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -259,12 +259,6 @@ pub enum DefRegion {
     DefFreeRegion(/* block scope */ NodeId, /* lifetime decl */ NodeId),
 }
 
-#[deriving(Clone, Eq, IterBytes, Encodable, Decodable, ToStr)]
-pub struct DefNamedRegion {
-    node_id: NodeId,
-    depth: uint,
-}
-
 // The set of MetaItems that define the compilation environment of the crate,
 // used to drive conditional compilation
 pub type CrateConfig = ~[@MetaItem];