Ticket #36 (closed defect: fixed)
Bug in DEBUG check in Quadtree.cpp file
| Reported by: | mloskot | Owned by: | strk@… |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Core | Version: | svn-trunk |
| Severity: | Content | Keywords: | imported,phpbugtracker |
| Cc: |
Description (last modified by mloskot) (diff)
In body of Quadtree::query member function, near line 103, foundItems are passed by referenc instead of pointer, so DEBUG check should be updated as well:
line:
foundItems->size()
should read as:
foundItems.size()
Fixed in patch attached to this report
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

