summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/coord-circle.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-02 02:31:05 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-02 02:31:05 +0100
commit4eca7f7cfa65f3400900f5bb97e5e838b43262c7 (patch)
tree9a440af5c92be87cf3e67bd2d94da77bbb517ac9 /crawl-ref/source/coord-circle.cc
parent186c111b3f321cebde61ad3404eea90a3ab5cb7d (diff)
downloadcrawl-ref-4eca7f7cfa65f3400900f5bb97e5e838b43262c7.tar.gz
crawl-ref-4eca7f7cfa65f3400900f5bb97e5e838b43262c7.zip
Drop the now unused circle_iterator.
It turns out it was only an implementation detail of radius_iterator.
Diffstat (limited to 'crawl-ref/source/coord-circle.cc')
-rw-r--r--crawl-ref/source/coord-circle.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/coord-circle.cc b/crawl-ref/source/coord-circle.cc
index 5c9ab56d77..2c854594b2 100644
--- a/crawl-ref/source/coord-circle.cc
+++ b/crawl-ref/source/coord-circle.cc
@@ -92,11 +92,6 @@ const coord_def& circle_def::get_center() const
return origin;
}
-circle_iterator circle_def::iter() const
-{
- return circle_iterator(*this);
-}
-
bool circle_def::contains(const coord_def &p) const
{
if (!bbox.contains(p))