|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r81936 - sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree
From: adam.wulkiewicz_at_[hidden]
Date: 2012-12-14 07:07:25
Author: awulkiew
Date: 2012-12-14 07:07:25 EST (Fri, 14 Dec 2012)
New Revision: 81936
URL: http://svn.boost.org/trac/boost/changeset/81936
Log:
rtree::assign() commented out.
Text files modified:
sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp
==============================================================================
--- sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp (original)
+++ sandbox-branches/geometry/index/boost/geometry/extensions/index/rtree/rtree.hpp 2012-12-14 07:07:25 EST (Fri, 14 Dec 2012)
@@ -416,12 +416,12 @@
\param first The beginning of the range of values.
\param last The end of the range of values.
*/
- template <typename Iterator>
+ /*template <typename Iterator>
inline void assign(Iterator first, Iterator last)
{
rtree foo(first, last, this->parameters(), this->translator(), this->get_allocator());
this->swap(foo);
- }
+ }*/
/*!
Assign new elements to the rtree. This method replaces the content of the rtree.
@@ -430,12 +430,12 @@
\param rng The range of values.
*/
- template <typename Range>
+ /*template <typename Range>
inline void assign(Range const& rng)
{
rtree foo(rng, this->parameters(), this->translator(), this->get_allocator());
this->swap(foo);
- }
+ }*/
/*!
Find values meeting spatial predicates, e.g. intersecting some box.
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