[geometry][index]: errors fixed in additional rtree utilities.

[SVN r84906]
This commit is contained in:
Adam Wulkiewicz
2013-06-26 21:45:17 +00:00
parent 90d1c2485f
commit 49597be2de
2 changed files with 4 additions and 4 deletions

View File

@@ -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)
{

View File

@@ -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)
{