summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/losparam.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-08 01:09:52 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-08 01:31:42 +0100
commit9fe79e18ac4b445f04e732338bcf77244a611db9 (patch)
tree6a45fedf9b4e159fc7cbf1a81a732fde734443c0 /crawl-ref/source/losparam.h
parent85c17b8719e401c99dc9f37748ece43caa9636c7 (diff)
downloadcrawl-ref-9fe79e18ac4b445f04e732338bcf77244a611db9.tar.gz
crawl-ref-9fe79e18ac4b445f04e732338bcf77244a611db9.zip
Remove debugging code from losparam.h.
Diffstat (limited to 'crawl-ref/source/losparam.h')
-rw-r--r--crawl-ref/source/losparam.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/crawl-ref/source/losparam.h b/crawl-ref/source/losparam.h
index d6bc6a6b55..1986e460a5 100644
--- a/crawl-ref/source/losparam.h
+++ b/crawl-ref/source/losparam.h
@@ -22,12 +22,6 @@ struct opacity_func
virtual opacity_type operator()(const coord_def& p) const = 0;
virtual ~opacity_func() {}
virtual opacity_func* clone() const = 0;
-
- // XXX: to be able to call from gdb.
- virtual opacity_type call(const coord_def& p) const
- {
- return (*this)(p);
- }
};
struct bounds_func
@@ -35,12 +29,6 @@ struct bounds_func
virtual ~bounds_func() {}
virtual bool operator()(const coord_def& p) const = 0;
virtual bounds_func* clone() const = 0;
-
- // XXX: to be able to call from gdb.
- virtual bool call(const coord_def& p) const
- {
- return (*this)(p);
- }
};
#define CLONE(typename) \