Internals: Remove dead code.

This commit is contained in:
Wilson Snyder 2021-10-05 22:02:23 -04:00
parent 4739956cfe
commit 7d57c3ca78
1 changed files with 0 additions and 13 deletions

View File

@ -278,19 +278,6 @@ static void UNSUPREAL(FileLine* fileline) {
void yyerror(const char* errmsg) { PARSEP->bisonLastFileline()->v3error(errmsg); }
void yyerrorf(const char* format, ...) {
const int maxlen = 2000;
char msg[maxlen];
va_list ap;
va_start(ap, format);
VL_VSNPRINTF(msg, maxlen, format, ap);
msg[maxlen - 1] = '\0';
va_end(ap);
yyerror(msg);
}
//======================================================================
class AstSenTree;