[doc] Fix a comment in the rtree's range adaptors example.

This commit is contained in:
Adam Wulkiewicz 2014-12-22 01:39:51 +01:00
parent 7006d6ca80
commit a5925c63dd

View File

@ -65,7 +65,7 @@ int main()
boxes.push_back(b);
}
// create the rtree using default constructor
// create the rtree passing a Range
bgi::rtree< value, bgi::quadratic<16> >
rtree(boxes | boost::adaptors::indexed()
| boost::adaptors::transformed(pair_maker<box, size_type>()));