diff options
Diffstat (limited to 'print/lilypond/patches/patch-lily_rest.cc')
-rw-r--r-- | print/lilypond/patches/patch-lily_rest.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/print/lilypond/patches/patch-lily_rest.cc b/print/lilypond/patches/patch-lily_rest.cc new file mode 100644 index 00000000000..7ee1e9519b7 --- /dev/null +++ b/print/lilypond/patches/patch-lily_rest.cc @@ -0,0 +1,13 @@ +$NetBSD: patch-lily_rest.cc,v 1.1 2013/06/16 20:46:52 joerg Exp $ + +--- lily/rest.cc.orig 2013-06-16 19:00:53.000000000 +0000 ++++ lily/rest.cc +@@ -169,7 +169,7 @@ Rest::glyph_name (Grob *me, int durlog, + actual_style = ""; + } + +- return ("rests." + to_string (durlog) + (is_ledgered ? "o" : "") ++ return ("rests." + ::to_string (durlog) + (is_ledgered ? "o" : "") + + actual_style); + } + |