1 2 3 4 5 6 7  | namespace AstlULMcalc {
extern const char* const yytname[] =
  {
  "$end", "error", "$undefined", "DECIMAL_CONSTANT", "LPAREN", "MINUS",
  "PLUS", "$accept", "start", "expression", "exp", "term", "integer", nullptr
  };
}
 | 
1 2 3 4 5 6 7  | namespace AstlULMcalc {
extern const char* const yytname[] =
  {
  "$end", "error", "$undefined", "DECIMAL_CONSTANT", "LPAREN", "MINUS",
  "PLUS", "$accept", "start", "expression", "exp", "term", "integer", nullptr
  };
}
 |