mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-03 09:12:13 +00:00
[geometry][index]: errors fixed in additional rtree utilities.
[SVN r84906]
This commit is contained in:
@@ -58,7 +58,7 @@ struct gl_draw_indexable
|
||||
template <typename Indexable>
|
||||
struct gl_draw_indexable<Indexable, box_tag>
|
||||
{
|
||||
static const size_t dimension = dimension<Indexable>::value;
|
||||
static const size_t dimension = geometry::dimension<Indexable>::value;
|
||||
|
||||
static inline void apply(Indexable const& i, typename coordinate_type<Indexable>::type z)
|
||||
{
|
||||
@@ -69,7 +69,7 @@ struct gl_draw_indexable<Indexable, box_tag>
|
||||
template <typename Indexable>
|
||||
struct gl_draw_indexable<Indexable, point_tag>
|
||||
{
|
||||
static const size_t dimension = dimension<Indexable>::value;
|
||||
static const size_t dimension = geometry::dimension<Indexable>::value;
|
||||
|
||||
static inline void apply(Indexable const& i, typename coordinate_type<Indexable>::type z)
|
||||
{
|
||||
|
||||
@@ -71,7 +71,7 @@ struct print_indexable
|
||||
template <typename Indexable>
|
||||
struct print_indexable<Indexable, box_tag>
|
||||
{
|
||||
static const size_t dimension = dimension<Indexable>::value;
|
||||
static const size_t dimension = geometry::dimension<Indexable>::value;
|
||||
|
||||
static inline void apply(std::ostream &os, Indexable const& i)
|
||||
{
|
||||
@@ -86,7 +86,7 @@ struct print_indexable<Indexable, box_tag>
|
||||
template <typename Indexable>
|
||||
struct print_indexable<Indexable, point_tag>
|
||||
{
|
||||
static const size_t dimension = dimension<Indexable>::value;
|
||||
static const size_t dimension = geometry::dimension<Indexable>::value;
|
||||
|
||||
static inline void apply(std::ostream &os, Indexable const& i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user