]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix namespace issue with clang.
authorThomas Klausner <wiz@NetBSD.org>
Sun, 6 Apr 2014 17:17:30 +0000 (19:17 +0200)
committerJames Lowe <pkx166h@gmail.com>
Sat, 12 Apr 2014 06:51:43 +0000 (07:51 +0100)
Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
lily/misc.cc

index 2adc250481b978bf75a196955787bd3fbca7d852..6021380023158cc5df21d570f4be92f570a5fe19 100644 (file)
@@ -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))
     {