added missing 'override' markers

This commit is contained in:
Zeno Rogue 2019-05-07 01:10:36 +02:00
parent 3b5733c935
commit ee8b442300
1 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ namespace binary {
hrmap_binary() : hrmap_hyperbolic() { set_seed(); }
heptagon *create_step(heptagon *parent, int d) {
heptagon *create_step(heptagon *parent, int d) override {
auto h = parent;
switch(geometry) {
case gBinaryTiling: {
@ -320,7 +320,7 @@ namespace binary {
return NULL;
}
void draw() {
void draw() override {
dq::visited.clear();
dq::enqueue(viewctr.at, cview());