missing override added

This commit is contained in:
Zeno Rogue 2020-01-06 22:18:10 +01:00
parent 0cd2765da4
commit 2ebef9e754
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ EX namespace reg3 {
vector<vector<transmatrix>> tmatrices;
vector<cell*> acells;
transmatrix adj(heptagon *h, int d) { return tmatrices[h->fieldval][d]; }
transmatrix adj(heptagon *h, int d) override { return tmatrices[h->fieldval][d]; }
heptagon *getOrigin() override { return allh[0]; }