git-svn-id: svn://ultimatepp.org/upp/trunk@8436 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-05-12 15:07:55 +00:00
parent 9867b16fc1
commit ea8e68ab68
3 changed files with 23 additions and 15 deletions

View file

@ -5,19 +5,6 @@ NAMESPACE_UPP
#define LTIMING(x) RTIMING(x)
#define LLOG(x) // DLOG(x)
const char *Cpp::SkipString(const char *s)
{
CParser p(s);
try {
p.ReadOneString(*s);
}
catch(CParser::Error) {}
s = p.GetPtr();
while((byte)*(s - 1) <= ' ')
s--;
return s;
}
void Cpp::ParamAdd(Vector<String>& param, const char *s, const char *e)
{
while(s < e && (byte)*s <= ' ') s++;