aboutsummaryrefslogtreecommitdiff
path: root/src/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.rs')
-rw-r--r--src/parse.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/parse.rs b/src/parse.rs
index aff4972..66f80fe 100644
--- a/src/parse.rs
+++ b/src/parse.rs
@@ -5,14 +5,6 @@ use syn::{Attribute, Error, Expr, Fields, Result, Stmt, Token, Visibility};
use crate::emit::Kind;
-pub struct Nothing;
-
-impl Parse for Nothing {
- fn parse(_input: ParseStream) -> Result<Self> {
- Ok(Nothing)
- }
-}
-
pub enum Input {
Enum(syn::ItemEnum),
Match(syn::ExprMatch),