Remove unused code

refs #8074
This commit is contained in:
Gunnar Beutner 2014-12-15 06:03:13 +01:00
parent 343d46bcbe
commit 8c9fdb537f
1 changed files with 0 additions and 15 deletions

View File

@ -41,21 +41,6 @@ do { \
yycolumn += yyleng; \
} while (0);
#define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (YYID (N)) { \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} else { \
(Current).first_line = (Current).last_line = \
YYRHSLOC(Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC(Rhs, 0).last_column; \
} \
while (YYID(0))
#define YY_INPUT(buf, result, max_size) \
do { \
result = yyextra->ReadInput(buf, max_size); \