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:
parent
a3a1d7a727
commit
be0c3c2347
1 changed files with 2 additions and 1 deletions
|
@ -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$
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue