aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parser.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-10 22:01:50 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-08-10 22:01:50 -0700
commitb9b6b6108e53e3b5ea09b78c334b16fa0e4ac8a9 (patch)
treeadf9a665463ba016fa945876b7a009aa197051e0 /src/parser.cpp
parent3a2ba60b707edb0748e571ef067fd2b41ca14a13 (diff)
Dead macro cleanup
Enable -Wunused-macros, and remove said unused macros
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index 95880922..4b2bff93 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -30,22 +30,11 @@ The fish parser. Contains functions for parsing and evaluating code.
#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
*/
#define WHILE_BLOCK N_( L"'while' block" )