1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 17:07:40 +00:00

Add explicit and override consistently everywhere else. NFCI.

This commit is contained in:
Arthur O'Dwyer
2021-07-11 18:03:08 -04:00
parent a2989a3d39
commit 090e084dd4
6 changed files with 79 additions and 80 deletions

View File

@@ -21,7 +21,7 @@ EX namespace inforder {
struct hrmap_inforder : hrmap_hyperbolic {
heptagon *create_step(heptagon *h, int direction) {
heptagon *create_step(heptagon *h, int direction) override {
int deg = h->type;
if(mixed()) deg = 7 - deg;
auto h1 = init_heptagon(deg);
@@ -51,4 +51,4 @@ EX namespace inforder {
EX }
}
}