Fixed labels so they can be referenced before creation.
Cleaned up symbol parsing code. Reversed order of public table. Fixed bug with macro arguments.
This commit is contained in:
@ -111,6 +111,15 @@ void Strip(std::string &text)
|
||||
{
|
||||
int i = 0;
|
||||
|
||||
if (text.size() == 1)
|
||||
{
|
||||
if (isspace(text[0]))
|
||||
{
|
||||
text.clear();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
for (i=0; i<(int)text.size(); i++)
|
||||
{
|
||||
if (!isspace(text[i]))
|
||||
|
Reference in New Issue
Block a user