From: Thomas Klausner Date: Sun, 6 Apr 2014 17:17:30 +0000 (+0200) Subject: Fix namespace issue with clang. X-Git-Tag: release/2.19.5-1~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3d456562eb14c3dc8515038a25a2dde24b2486b8;p=lilypond.git Fix namespace issue with clang. Signed-off-by: Thomas Klausner --- diff --git a/lily/misc.cc b/lily/misc.cc index 2adc250481..6021380023 100644 --- a/lily/misc.cc +++ b/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)) {