git-svn-id: svn://ultimatepp.org/upp/trunk@5437 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-10-19 10:13:41 +00:00
parent 684f3de55c
commit fe5842188e
17 changed files with 448729 additions and 84 deletions

View file

@ -135,7 +135,6 @@ String Cpp::Expand(const char *s)
int q = macro.Find(id);
if(q >= 0 && !macro[q].flag) {
LLOG("Expanding " << id);
LOGBEGIN();
Vector<String> param;
while(*s && (byte)*s <= ' ') s++;
if(*s == '(') {
@ -174,7 +173,6 @@ String Cpp::Expand(const char *s)
macro[q].flag = true;
r.Cat(Expand(macro[q].Expand(param)));
macro[q].flag = false;
LOGEND();
}
else
r.Cat(id);