We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88de63d commit 539449eCopy full SHA for 539449e
.github/workflows/fuzz.yml
@@ -38,7 +38,7 @@ jobs:
38
run: |
39
mkdir corpus_test
40
make testrunner CXXOPTS="-DSTORE_INPUT_DIR=\"\\\"$(pwd)/corpus_test\\\"\""
41
- ./testrunner
+ ./testrunner || true
42
43
- name: Upload corpus (testrunner)
44
uses: actions/upload-artifact@v6
simplecpp.cpp
@@ -2035,13 +2035,7 @@ namespace simplecpp {
2035
2036
tok = tok->next;
2037
if (tok == endToken2) {
2038
- if (tok) {
2039
- output.push_back(new Token(*tok->previous));
2040
- }
2041
- else {
2042
- output.push_back(new Token(*nameTokInst));
2043
- output.back()->setstr("\"\"");
2044
+ output.push_back(new Token(*tok->previous));
2045
break;
2046
}
2047
if (tok->op == '#') {
0 commit comments