mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Fix for 238946: Exclude braces from potential asm line comment chars
This commit is contained in:
parent
7c3c465132
commit
c026945dac
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public final class AsmPartitionScanner implements IPartitionTokenScanner, ICPart
|
|||
/**
|
||||
* Characters not applicable for line start comments.
|
||||
*/
|
||||
private static final String NON_LINE_COMMENT_CHARS = "\t #/_$.%()'\""; //$NON-NLS-1$
|
||||
private static final String NON_LINE_COMMENT_CHARS = "\t #/_$.%()'\"{}"; //$NON-NLS-1$
|
||||
/**
|
||||
* Characters known to be used as line end comments.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue