diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2013-11-08 15:52:36 -0500 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2013-11-08 19:47:57 -0500 |
| commit | f36a891fe22f656454b70b8f2aa64bef9133e7f0 (patch) | |
| tree | 4482bfb8253edccb0595238adf01c57d0e6bd7d0 /src/libsyntax | |
| parent | bc3e84250868dff44ce0ea0919d9db8549dddf32 (diff) | |
| download | rust-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.rs | 6 |
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]; |
