From: Han-Wen Nienhuys Date: Tue, 24 Jan 2006 01:43:25 +0000 (+0000) Subject: * flower/include/string.hh (class String): remove String:: qualifier. X-Git-Tag: release/2.7.29~28 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9102fccf6073c28a78ea5ba81479b0b824b2892a;p=lilypond.git * flower/include/string.hh (class String): remove String:: qualifier. * flower/include/string.hh (class String): remove to_str0 and is_empty(). S&R everywhere. --- diff --git a/ChangeLog b/ChangeLog index 8568c031df..34d15b998d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-01-24 Han-Wen Nienhuys + * flower/include/string.hh (class String): remove String:: qualifier. + * buildscripts/analyse-cxx-log.py: new file. Read compile log to substitute appropriate functions. diff --git a/flower/include/string.hh b/flower/include/string.hh index 93f83f234f..4a4f36f86e 100644 --- a/flower/include/string.hh +++ b/flower/include/string.hh @@ -68,7 +68,7 @@ public: /* std::string interface */ char const *c_str () const; bool empty () const; - int String::find (String &s, int pos=0) const; + int find (String &s, int pos=0) const; int find (char c) const; int rfind (char c) const; String replace (int pos, int n, String str);