From ee8b442300d98aa2383f976a8beb4cd78dfcad7c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 7 May 2019 01:10:36 +0200 Subject: [PATCH] added missing 'override' markers --- binary-tiling.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binary-tiling.cpp b/binary-tiling.cpp index 308d4de6..af8422c0 100644 --- a/binary-tiling.cpp +++ b/binary-tiling.cpp @@ -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());