1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023347: Expression '(* q == ' ') && (* q == '\t')' is always false. Probably the '||' operator should be used here.

Replacing '&&' with '||'.
This commit is contained in:
Pawel 2012-07-25 17:35:26 +02:00 committed by Pawel Kowalski
parent d33dea30d5
commit d4a137d527

View File

@ -1036,7 +1036,7 @@ static Standard_Real ParseValue(char*& name)
// count arguments
Standard_Integer argc = 1;
char* q = p;
while ((*q == ' ') && (*q == '\t')) q++;
while ((*q == ' ') || (*q == '\t')) q++;
if (*q == '(') {
Standard_Integer pc = 1;
argc = 2;