Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84906 - trunk/boost/geometry/index/detail/rtree/utilities
From: adam.wulkiewicz_at_[hidden]
Date: 2013-06-26 17:45:17


Author: awulkiew
Date: 2013-06-26 17:45:17 EDT (Wed, 26 Jun 2013)
New Revision: 84906
URL: http://svn.boost.org/trac/boost/changeset/84906

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

Text files modified:
   trunk/boost/geometry/index/detail/rtree/utilities/gl_draw.hpp | 4 ++--
   trunk/boost/geometry/index/detail/rtree/utilities/print.hpp | 4 ++--
   2 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/geometry/index/detail/rtree/utilities/gl_draw.hpp
==============================================================================
--- trunk/boost/geometry/index/detail/rtree/utilities/gl_draw.hpp Wed Jun 26 13:34:37 2013 (r84905)
+++ trunk/boost/geometry/index/detail/rtree/utilities/gl_draw.hpp 2013-06-26 17:45:17 EDT (Wed, 26 Jun 2013) (r84906)
@@ -58,7 +58,7 @@
 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 @@
 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)
     {

Modified: trunk/boost/geometry/index/detail/rtree/utilities/print.hpp
==============================================================================
--- trunk/boost/geometry/index/detail/rtree/utilities/print.hpp Wed Jun 26 13:34:37 2013 (r84905)
+++ trunk/boost/geometry/index/detail/rtree/utilities/print.hpp 2013-06-26 17:45:17 EDT (Wed, 26 Jun 2013) (r84906)
@@ -71,7 +71,7 @@
 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 @@
 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)
     {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk