From 8bddce26330ad3689dfdc2da0903bedf7a8aeb7e Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 11 Feb 2018 20:17:34 -0800 Subject: [PATCH] Remove fake_block_t It was unused. --- src/parser.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/parser.h b/src/parser.h index 7c061a2c3..8be14ef2d 100644 --- a/src/parser.h +++ b/src/parser.h @@ -131,10 +131,6 @@ struct switch_block_t : public block_t { switch_block_t(); }; -struct fake_block_t : public block_t { - fake_block_t(); -}; - struct scope_block_t : public block_t { explicit scope_block_t(block_type_t type); // must be BEGIN, TOP or SUBST };