The parser would forget to add the last parsed item.

This commit is contained in:
the_fiddler 2010-10-12 16:34:22 +00:00
parent d8235e256d
commit 2f91f0c650

View file

@ -121,6 +121,11 @@ namespace CHeaderToXML
}
}
}
if (current != null)
{
yield return current;
}
}
string[] SplitWords(string line)