From d610d40b8ac23c1586196eca045a0053122bbb72 Mon Sep 17 00:00:00 2001 From: Andrey Chulkov Date: Thu, 7 May 2020 04:31:47 +0300 Subject: [PATCH] fix --- dbms/src/Dictionaries/PolygonDictionaryUtils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/Dictionaries/PolygonDictionaryUtils.h b/dbms/src/Dictionaries/PolygonDictionaryUtils.h index 02c1b375fbf..eee4d52b63d 100644 --- a/dbms/src/Dictionaries/PolygonDictionaryUtils.h +++ b/dbms/src/Dictionaries/PolygonDictionaryUtils.h @@ -28,7 +28,7 @@ public: explicit Cell(std::vector> children_); - [[nodiscard]] const Cell * find(Float64 x, Float64 y) const override; + [[nodiscard]] const Cell * find(Float64 x, Float64 y) const; private: std::vector> children; @@ -50,7 +50,7 @@ public: /** Retrieves the cell containing a given point. * A null pointer is returned when the point falls outside the grid. */ - [[nodiscard]] const Cell * find(Float64 x, Float64 y) const override; + [[nodiscard]] const Cell * find(Float64 x, Float64 y) const; /** When a cell is split every side is split into kSplit pieces producing kSplit * kSplit equal smaller cells. */ static constexpr size_t kSplit = 4;