1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-02 13:13:36 +02:00

Auto closing angle brackets after *_cast. Bug 285366.

This commit is contained in:
Sergey Prigogin 2009-08-01 20:10:20 +00:00
parent a3a1d7a727
commit be0c3c2347

View file

@ -559,7 +559,8 @@ public class CEditor extends TextEditor implements ISelectionChangedListener, IC
return identifier.length() > 0
&& (Character.isUpperCase(identifier.charAt(0))
|| angularIntroducers.contains(identifier)
|| identifier.endsWith("_ptr")); //$NON-NLS-1$
|| identifier.endsWith("_ptr") //$NON-NLS-1$
|| identifier.endsWith("_cast")); //$NON-NLS-1$
}
/*