Open markwatkinson opened 13 years ago
C scanner should recognise trigraph sequences, e.g.
// Will the next line be executed????????????????/ a++;
the last '??/' is a trigraph which is synonymous with '\', which means the newline is escaped so the whole block is a single line comment.
http://en.wikipedia.org/wiki/Digraphs_and_trigraphs#C
Low priority as I expect they are rarely (if ever) used.
C scanner should recognise trigraph sequences, e.g.
the last '??/' is a trigraph which is synonymous with '\', which means the newline is escaped so the whole block is a single line comment.
http://en.wikipedia.org/wiki/Digraphs_and_trigraphs#C
Low priority as I expect they are rarely (if ever) used.