[cpp] Don't skip the continuation character in the grammar anymore

Since we now have a CppCharStream, we can remove the changes
introduced for #431
This commit is contained in:
Andreas Dangel
2017-07-07 23:11:27 +02:00
parent 9618481218
commit ec631f3993
2 changed files with 0 additions and 5 deletions

View File

@ -49,7 +49,6 @@ public class CPPTokenizerContinuationTest {
public void testContinuationIntraToken() throws Exception {
Tokens tokens = parse(load("cpp_continuation_intra_token.cpp"));
assertEquals(7, tokens.size());
printTokens(tokens);
}
@Test