Skip to content

Commit 539449e

Browse files
committed
s
1 parent 88de63d commit 539449e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
mkdir corpus_test
4040
make testrunner CXXOPTS="-DSTORE_INPUT_DIR=\"\\\"$(pwd)/corpus_test\\\"\""
41-
./testrunner
41+
./testrunner || true
4242
4343
- name: Upload corpus (testrunner)
4444
uses: actions/upload-artifact@v6

simplecpp.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2035,13 +2035,7 @@ namespace simplecpp {
20352035

20362036
tok = tok->next;
20372037
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-
}
2038+
output.push_back(new Token(*tok->previous));
20452039
break;
20462040
}
20472041
if (tok->op == '#') {

0 commit comments

Comments
 (0)