]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/hashcomp.cpp
Add Ankit to regular contributors list
[user/henk/code/inspircd.git] / src / hashcomp.cpp
index 0d036d528b9447c811d396a376df7452d4159553..ab4d8368ddbb42a0f3351d4408d4d37132c4b08a 100644 (file)
@@ -501,7 +501,7 @@ long irc::portparser::GetToken()
        }
 }
 
-const std::string& SearchAndReplace(std::string& text, const std::string& pattern, const std::string& replace)
+/*const std::basic_string& SearchAndReplace(std::string& text, const std::string& pattern, const std::string& replace)
 {
        std::string replacement;
        if ((!pattern.empty()) && (!text.empty()))
@@ -510,7 +510,6 @@ const std::string& SearchAndReplace(std::string& text, const std::string& patter
                {
                        if (text.length() >= pattern.length() && text.substr(n, pattern.length()) == pattern)
                        {
-                               /* Found the pattern in the text, replace it, and advance */
                                replacement.append(replace);
                                n = n + pattern.length() - 1;
                        }
@@ -522,5 +521,5 @@ const std::string& SearchAndReplace(std::string& text, const std::string& patter
        }
        text = replacement;
        return text;
-}
+}*/