mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Cosmetics.
This commit is contained in:
parent
a8433e7887
commit
b741929843
1 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ public class SemanticUtil {
|
|||
final char[] name= method.getNameCharArray();
|
||||
if (name.length > OPERATOR_CHARS.length + 1 &&
|
||||
CharArrayUtils.equals(name, 0, OPERATOR_CHARS.length, OPERATOR_CHARS)) {
|
||||
if (name[OPERATOR_CHARS.length]==' ') {
|
||||
if (name[OPERATOR_CHARS.length] == ' ') {
|
||||
result= !cas.containsKey(name, OPERATOR_CHARS.length+1, name.length - (OPERATOR_CHARS.length+1));
|
||||
}
|
||||
}
|
||||
|
@ -182,7 +182,7 @@ public class SemanticUtil {
|
|||
} else if (stopAtPointerToMember && type instanceof ICPPPointerToMemberType) {
|
||||
return type;
|
||||
} else if (type instanceof IPointerType) {
|
||||
if (lastPointerType!=null) {
|
||||
if (lastPointerType != null) {
|
||||
lastPointerType[0]= type;
|
||||
}
|
||||
type= ((IPointerType) type).getType();
|
||||
|
|
Loading…
Add table
Reference in a new issue