]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.6
authorfred <fred>
Fri, 8 Nov 1996 13:58:59 +0000 (13:58 +0000)
committerfred <fred>
Fri, 8 Nov 1996 13:58:59 +0000 (13:58 +0000)
flower/pcursor.hh

index eb0e8f15f951339c26555cb0467c77dd6e607814..095bcc45bf697cf0f47362c3c914042c9377c51f 100644 (file)
@@ -25,7 +25,7 @@ struct PCursor : public Cursor<T> {
     PCursor(const List<T> & l) : Cursor<T> (l) {}
 
     PCursor( const Cursor<T>& cursor ) : Cursor<T>(cursor) { }
-    T operator ->() { return  *(*this); }
+    T operator ->() const { return  *(*(Cursor<T> *)this); }
 
 };
 /**