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

Bug 438384 - "syntax error" for class method ref qualifiers (missed

file)
This commit is contained in:
Sergey Prigogin 2014-08-26 18:32:07 -07:00
parent c4fab21258
commit 9f4cd256f3

View file

@ -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;