Skip to content

Commit da5005d

Browse files
authored
Merge pull request doxygen#11533 from e-kwsm/caseconvert.py
fix: fix regression of doxygen#11390
2 parents 932aa3d + 2a25410 commit da5005d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/caseconvert.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def writePunctuationCodes(file):
4747
{
4848
''')
4949
writeMapping(file,toupper)
50-
file.write(r''' default: return nullptr
50+
file.write(r''' default: return nullptr;
5151
}
5252
}
5353
@@ -57,7 +57,7 @@ def writePunctuationCodes(file):
5757
{
5858
''')
5959
writeMapping(file,tolower)
60-
file.write(r''' default: return nullptr
60+
file.write(r''' default: return nullptr;
6161
}
6262
}
6363
@@ -67,9 +67,9 @@ def writePunctuationCodes(file):
6767
{
6868
''')
6969
writePunctuationCodes(file)
70-
file.write(r''' default: return false
70+
file.write(r''' default: return false;
7171
}
72-
return false
72+
return false;
7373
}
7474
7575
#endif

0 commit comments

Comments
 (0)