]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed unused String::set
authorFrancesco Chemolli <kinkie@squid-cache.org>
Sun, 8 Feb 2009 20:57:09 +0000 (21:57 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Sun, 8 Feb 2009 20:57:09 +0000 (21:57 +0100)
src/String.cci

index bd97323d99f35c7e7a932e354b54a2f9dd0ead18..4795c898d2af83abca328608bbde9881585d7800 100644 (file)
@@ -184,15 +184,6 @@ String::caseCmp(const String &str) const
     return caseCmp(str.rawBuf(),str.size());
 }
 
-
-void
-String::set(char const *loc, char const ch)
-{
-    if (loc < buf_ || loc > (buf_ + size_) ) return;
-
-    buf_[loc-buf_] = ch;
-}
-
 void
 String::cut(size_t newLength)
 {