summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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) \