Move forgotten include

This commit is contained in:
Andrey Chulkov 2020-03-22 02:34:26 +03:00
parent 79bfa3c1a2
commit 29b5cff84b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,6 @@
#include <Columns/ColumnDecimal.h>
#include <Columns/ColumnString.h>
#include <Common/Arena.h>
#include <Poco/Logger.h>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>

View File

@ -1,6 +1,7 @@
#pragma once
#include <Core/Types.h>
#include <Poco/Logger.h>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/box.hpp>
@ -88,7 +89,7 @@ private:
/** Generate edge indexes during its construction in
* the following way: sort all polygon's vertexes by x coordinate, and then store all interesting
* polygon edges for each adjacent x coordinates. For each query finds interesting edges and
* polygon edges for each adjacent x coordinates. For each query finds interesting edges and
* iterates over them, finding required polygon. If there is more than one any such polygon may be returned.
*/
class BucketsPolygonIndex