1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 11:08:05 +00:00

Remove extraneous semicolons to quiet pedantic GCC warnings.

This commit is contained in:
Arthur O'Dwyer
2020-02-22 20:51:27 -05:00
parent 14d2237c01
commit a0da10b408
18 changed files with 26 additions and 26 deletions

View File

@@ -755,11 +755,11 @@ void gotoHelpFor(eItem i) {
void gotoHelpFor(eWall w) {
help = generateHelpForWall(w);
};
}
void gotoHelpFor(eMonster m) {
help = generateHelpForMonster(m);
};
}
EX void appendHelp(string s) {
auto h = helpgenerator;