From ba438552cb2743524f19a1774ae5a38b559365f8 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 17 Feb 2005 03:17:42 +0000 Subject: [PATCH] Fix for PR 82856 Removing UTF-8 characters. --- .../core/parser/ast/complete/CompleteParseASTFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/CompleteParseASTFactory.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/CompleteParseASTFactory.java index e6ea18bc5d8..00c59c05a5c 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/CompleteParseASTFactory.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/ast/complete/CompleteParseASTFactory.java @@ -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; } -} \ No newline at end of file +}