mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
LibGUI: Use east const style in {INI,GML}Lexer.{cpp,h}
This commit is contained in:
parent
106ad6ba09
commit
e10278402f
4 changed files with 6 additions and 6 deletions
|
@ -33,7 +33,7 @@ struct IniToken {
|
|||
#undef __TOKEN
|
||||
};
|
||||
|
||||
const char* to_string() const
|
||||
char const* to_string() const
|
||||
{
|
||||
switch (m_type) {
|
||||
#define __TOKEN(x) \
|
||||
|
@ -52,7 +52,7 @@ struct IniToken {
|
|||
|
||||
class IniLexer {
|
||||
public:
|
||||
IniLexer(const StringView&);
|
||||
IniLexer(StringView const&);
|
||||
|
||||
Vector<IniToken> lex();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue