From 9f4cd256f332687836b98553c29e008c0abbb53c Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Tue, 26 Aug 2014 18:32:07 -0700 Subject: [PATCH] Bug 438384 - "syntax error" for class method ref qualifiers (missed file) --- .../core/dom/parser/ProblemFunctionType.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ProblemFunctionType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ProblemFunctionType.java index 797bf9278c3..927b81cc2fe 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ProblemFunctionType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ProblemFunctionType.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010, 2012 Wind River Systems, Inc. and others. + * Copyright (c) 2010, 2014 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -56,6 +56,16 @@ public class ProblemFunctionType extends ProblemType implements ICPPFunctionType return false; } + @Override + public boolean hasRefQualifier() { + return false; + } + + @Override + public boolean isRValueReference() { + return false; + } + @Override public boolean takesVarArgs() { return false;