From 9fe79e18ac4b445f04e732338bcf77244a611db9 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sun, 8 Nov 2009 01:09:52 +0100 Subject: Remove debugging code from losparam.h. --- crawl-ref/source/losparam.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'crawl-ref/source/losparam.h') 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) \ -- cgit v1.2.3-54-g00ecf