Comment #2 on issue 2088 by russell....@gmail.com: 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_) ();


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to