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