Dead macro cleanup

Enable -Wunused-macros, and remove said unused macros
This commit is contained in:
ridiculousfish
2015-08-10 22:01:50 -07:00
parent 3a2ba60b70
commit b9b6b6108e
6 changed files with 18 additions and 64 deletions

View File

@@ -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
*/