From b9b6b6108e53e3b5ea09b78c334b16fa0e4ac8a9 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Mon, 10 Aug 2015 22:01:50 -0700 Subject: Dead macro cleanup Enable -Wunused-macros, and remove said unused macros --- src/parser.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/parser.cpp') diff --git a/src/parser.cpp b/src/parser.cpp index 95880922..4b2bff93 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -29,22 +29,11 @@ The fish parser. Contains functions for parsing and evaluating code. #include "parse_tree.h" #include "parse_execution.h" -/** - Error message for tokenizer error. The tokenizer message is - appended to this message. -*/ -#define TOK_ERR_MSG _( L"Tokenizer error: '%ls'") - /** Error for evaluating in illegal scope */ #define INVALID_SCOPE_ERR_MSG _( L"Tried to evaluate commands using invalid block type '%ls'" ) -/** - Error for wrong token type -*/ -#define UNEXPECTED_TOKEN_ERR_MSG _( L"Unexpected token of type '%ls'") - /** While block description */ -- cgit v1.2.3