Base: Quantity: rename lexer and parser files

Rename files according 7d233dc ("Gui: Rename generated lexer files
to match core naming pattern"). Note that C space errors (space
before tabs, spaces on blank lines, etc.) still need to be fixed
manually after regenerating lexer file.
This commit is contained in:
Ladislav Michl
2025-04-07 16:31:57 +02:00
committed by Benjamin Nauck
parent 56f1b666f4
commit ce82b109d5
9 changed files with 806 additions and 1016 deletions

View File

@@ -523,14 +523,14 @@ namespace QuantityParser
#define yylex QuantityLexer
int QuantityLexer();
// Parser, defined in QuantityParser.y
// Parser, defined in Quantity.y
// NOLINTNEXTLINE
#include "QuantityParser.c"
#include "Quantity.tab.c"
#ifndef DOXYGEN_SHOULD_SKIP_THIS
// Scanner, defined in QuantityParser.l
// Scanner, defined in Quantity.l
// NOLINTNEXTLINE
#include "QuantityLexer.c"
#include "Quantity.lex.c"
#endif // DOXYGEN_SHOULD_SKIP_THIS
class StringBufferCleaner