1
0
Fork 0
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:
Anton Leherbauer 2008-07-10 11:22:25 +00:00
parent 7c3c465132
commit c026945dac

View file

@ -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.
*/