Skip to content

Commit

Permalink
added missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
zenorogue committed Aug 1, 2021
1 parent b0dd4eb commit ce1d48c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rulegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,7 @@ struct hrmap_rulegen : hrmap {
return relative_matrix_recursive(h2, h1);
}

hyperpoint get_corner(cell *c, int cid, ld cf) {
hyperpoint get_corner(cell *c, int cid, ld cf) override {
if(c->master->fieldval == -1) {
auto& sh = arb::current_or_slided().shapes[c->master->zebraval];
cid = gmod(cid, sh.size());
Expand All @@ -1479,7 +1479,7 @@ struct hrmap_rulegen : hrmap {
else hrmap::find_cell_connection(c, d);
}

bool strict_tree_rules() { return true; }
bool strict_tree_rules() override { return true; }

virtual bool link_alt(heptagon *h, heptagon *alt, hstate firststate, int dir) override {
auto& hts = treestates[h->fieldval];
Expand Down

0 comments on commit ce1d48c

Please sign in to comment.