]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/std-string.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / std-string.hh
index bc2fd61ee5f75bd90ccbd02692b7514aa72ac006..8ae6dfa5af5cbbf8846ac019ca46103df3484c82 100644 (file)
@@ -3,13 +3,23 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2006 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2006--2008 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #ifndef STD_STRING_HH
 #define STD_STRING_HH
  
 #include "compare.hh"
+#include "flower-proto.hh"
+
+#if 0
+/*
+  leads to dubious crashes - libstdc++  bug?
+ */
+#ifndef NDEBUG
+#define _GLIBCXX_DEBUG 1
+#endif
+#endif
 
 #include <string>
 
@@ -24,13 +34,14 @@ string to_string (int i, char const *format=0);
 string to_string (double f, char const *format=0);
 string to_string (long);
 string to_string (long unsigned);
+string to_string (I64, char const *format=0);
 string to_string (unsigned);
 string to_string (bool b);
 string to_string (char const *format, ...)
   __attribute__ ((format (printf, 1, 2)));
   
-string &replace_all (string &str, string find, string replace);
-string &replace_all (string &str, char find, char replace);
+string &replace_all (string* str, string const &find, string const &replace);
+string &replace_all (stringstr, char find, char replace);
 char *string_copy (string s);
 
 int string_compare (string const &, string const &);