[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Issue 2088 in lilypond: pointer confusion with clang++
From: |
lilypond |
Subject: |
Re: Issue 2088 in lilypond: pointer confusion with clang++ |
Date: |
Fri, 09 Dec 2011 19:35:15 +0000 |
Comment #2 on issue 2088 by address@hidden: pointer confusion with
clang++
http://code.google.com/p/lilypond/issues/detail?id=2088
At least the following changes are necessary if the lily-proto.hh is
changed as suggested above. Again, I will test and examine further this
weekend when I'm able (this comment is partly a "note to self", which I
hope is a reasonable use of the issue tracker).
translator-dispatch-list.cc:35
- (*e.function_) (e.engraver_, gi);
+ ((e.engraver_)->*(e.function_)) (gi);
include/translator-group.hh:46
- (*method_) (translator_);
+ (translator_->*method_) ();