mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-23 12:22:42 +00:00
precompiler changes.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@365 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5981194db4
commit
88151b16e8
1 changed files with 4 additions and 4 deletions
|
@ -1644,7 +1644,7 @@ void QCC_PR_ConditionCompilation(void)
|
||||||
if (s[-1] == '\\')
|
if (s[-1] == '\\')
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
else if (s[-2] == '\\' && s[-1] == '\r' && s[-1] == '\n')
|
else if (s[-2] == '\\' && s[-1] == '\r' && s[0] == '\n')
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1787,7 +1787,7 @@ int QCC_PR_CheakCompConst(void)
|
||||||
{
|
{
|
||||||
if (!*pr_file_p)
|
if (!*pr_file_p)
|
||||||
break;
|
break;
|
||||||
buffer[p] = *pr_file_p++;
|
buffer[p++] = *pr_file_p++;
|
||||||
}
|
}
|
||||||
buffer[p] = 0;
|
buffer[p] = 0;
|
||||||
|
|
||||||
|
@ -2245,8 +2245,8 @@ int typecmp(QCC_type_t *a, QCC_type_t *b)
|
||||||
|
|
||||||
if (a->size != b->size)
|
if (a->size != b->size)
|
||||||
return 1;
|
return 1;
|
||||||
if (STRCMP(a->name, b->name))
|
// if (STRCMP(a->name, b->name)) //This isn't 100% clean.
|
||||||
return 1;
|
// return 1;
|
||||||
|
|
||||||
if (typecmp(a->aux_type, b->aux_type))
|
if (typecmp(a->aux_type, b->aux_type))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue