summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/coordit.h
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/coordit.h
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/coordit.h')
-rw-r--r--crawl-ref/source/coordit.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/crawl-ref/source/coordit.h b/crawl-ref/source/coordit.h
index e0e115e64f..f5bbdb8e38 100644
--- a/crawl-ref/source/coordit.h
+++ b/crawl-ref/source/coordit.h
@@ -48,21 +48,6 @@ private:
int current;
};
-class circle_iterator
-{
- const circle_def &circle;
- rectangle_iterator iter;
-
-public:
- circle_iterator(const circle_def &circle_);
-
- operator bool() const PURE;
- coord_def operator *() const PURE;
-
- void operator ++ ();
- void operator ++ (int);
-};
-
/**
* @class radius_iterator
* Iterator over coordinates in a circular region.