From aea96f8c1bea1757e2d935e7c951dce3d85a88b1 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Thu, 9 Jul 2015 12:05:33 -0700 Subject: [PATCH] Cosmetics. --- .../internal/core/dom/parser/cpp/CPPASTLiteralExpression.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTLiteralExpression.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTLiteralExpression.java index 7240bfceb55..eee47dc342d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTLiteralExpression.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTLiteralExpression.java @@ -130,7 +130,8 @@ public class CPPASTLiteralExpression extends ASTNode implements ICPPASTLiteralEx if (udOffset > 0) { /* * 2.14.8.1 - * "If a token matches both user-defined-literal and another literal kind, it is treated as the latter" + * "If a token matches both user-defined-literal and another literal kind, it is + * treated as the latter" */ setSuffix(CharArrayUtils.subarray(fValue, udOffset, -1)); for (int i = 0; i < fSuffix.length; i++) {