1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fix for PR 82856 Removing UTF-8 characters.

This commit is contained in:
Alain Magloire 2005-02-17 03:17:42 +00:00
parent 0a6dc3da2e
commit ba438552cb

View file

@ -1581,10 +1581,10 @@ public class CompleteParseASTFactory extends BaseASTFactory implements
// pointer to a completely defined object type and the other shall
// have integral or enumeration type.
// For subtraction, one of the following shall hold:
// both operands have arithmetic or enumeration type; or
// both operands are pointers to cvqualified or cvunqualified
// - both operands have arithmetic or enumeration type; or
// - both operands are pointers to cvqualified or cvunqualified
// versions of the same completely defined object type; or
// the left operand is a pointer to a completely defined object
// - the left operand is a pointer to a completely defined object
// type and the right operand has integral or
// enumeration type.
} else if (kind == IASTExpression.Kind.ADDITIVE_PLUS) {
@ -4139,4 +4139,4 @@ public class CompleteParseASTFactory extends BaseASTFactory implements
return false;
}
}
}