]> git.lyx.org Git - lyx.git/blobdiff - src/support/LSubstring.C
one small private fix in mathed, put noncopyable and tie into boost namespace
[lyx.git] / src / support / LSubstring.C
index 3b9d1c379255f1d41056bc0c2d19f76b67a2991e..ddf132c007f565f18d4cf61193e268cc75ab374a 100644 (file)
@@ -43,7 +43,7 @@ LSubstring::LSubstring(string & s, string::value_type const * p)
 LSubstring::LSubstring(string & s, LRegex const & r)
        : ps(&s)
 {
-       LRegex::MatchPair res = r.first_match(s);
+       LRegex::MatchPair const res = r.first_match(s);
        if (res.first != string::npos) {
                n = res.second;
                pos = res.first;
@@ -68,14 +68,14 @@ LSubstring & LSubstring::operator=(LSubstring const & s)
 }
 
 
-LSubstring & LSubstring::operator=(char const * p)
+LSubstring & LSubstring::operator=(string::value_type const * p)
 {
        ps->replace(pos, n, p);
        return *this;
 }
 
 
-LSubstring & LSubstring::operator=(char c)
+LSubstring & LSubstring::operator=(string::value_type c)
 {
        ps->replace(pos, n, 1, c);
        return *this;