A recent git commit introduced a call to to_string. To make lilypond
compile with clang again, please commit the attached diff (fixed like
other instances of the same issue).
Thanks,
Thomas
--- lily/misc.cc.orig 2014-04-06 12:44:15.000000000 +0000
+++ lily/misc.cc
@@ -31,7 +31,7 @@ int
intlog2 (int d)
{
if (d <= 0)
- error ("intlog2 with negative argument: " + to_string (d));
+ error ("intlog2 with negative argument: " + ::to_string (d));
int i = 0;
while ((d != 1))
{
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond