From 0ab83f5c921ade46d4182c14e44062c32a21d562 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 8 Nov 1996 13:58:59 +0000 Subject: [PATCH] flower-1.0.6 --- flower/pcursor.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flower/pcursor.hh b/flower/pcursor.hh index eb0e8f15f9..095bcc45bf 100644 --- a/flower/pcursor.hh +++ b/flower/pcursor.hh @@ -25,7 +25,7 @@ struct PCursor : public Cursor { PCursor(const List & l) : Cursor (l) {} PCursor( const Cursor& cursor ) : Cursor(cursor) { } - T operator ->() { return *(*this); } + T operator ->() const { return *(*(Cursor *)this); } }; /** -- 2.39.5