mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-16 03:31:48 -07:00
Compare commits
4 Commits
v0.12-Alph
...
v0.14-Alph
Author | SHA1 | Date | |
---|---|---|---|
6498b13658 | |||
7f562cd77f | |||
3a0e971ebf | |||
4997cb5878 |
@ -509,6 +509,8 @@ namespace Parser
|
|||||||
);
|
);
|
||||||
return { { nullptr }, 0 };
|
return { { nullptr }, 0 };
|
||||||
}
|
}
|
||||||
|
move_forward();
|
||||||
|
content.Length++;
|
||||||
|
|
||||||
while ( left && current != '"' && current != '>' )
|
while ( left && current != '"' && current != '>' )
|
||||||
{
|
{
|
||||||
@ -5620,7 +5622,7 @@ CodeVar parse_variable()
|
|||||||
|
|
||||||
// Ignore const specifiers, they're handled by the type
|
// Ignore const specifiers, they're handled by the type
|
||||||
if ( spec == ESpecifier::Const )
|
if ( spec == ESpecifier::Const )
|
||||||
continue;
|
break;
|
||||||
|
|
||||||
specs_found[NumSpecifiers] = spec;
|
specs_found[NumSpecifiers] = spec;
|
||||||
NumSpecifiers++;
|
NumSpecifiers++;
|
||||||
|
Reference in New Issue
Block a user