]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
revert for now..
authorpippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 12 Jun 2008 21:09:04 +0000 (21:09 +0000)
committerpippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 12 Jun 2008 21:09:04 +0000 (21:09 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9899 e03df62e-2008-0410-955e-edbf42e46eb7

include/hashcomp.h
include/inspircd.h

index 777c4fe0e00becd960f76e6847b248b3841fc83a..6a6022a210c12fee732b8f146af5d3ebfb8e645b 100644 (file)
@@ -320,12 +320,12 @@ namespace irc
                 * @return True if tokens still remain, false if there are none left
                 */
                virtual bool GetToken(std::string &token);
-               
+
                /** Fetch the entire remaining stream, without tokenizing
                 * @return The remaining part of the stream
                 */
                virtual const std::string GetRemaining();
-               
+
                /** Returns true if the end of the stream has been reached
                 * @return True if the end of the stream has been reached, otherwise false
                 */
@@ -662,7 +662,7 @@ BEGIN_HASHMAP_NAMESPACE
                        if(s1.length() != s2.length()) return true;
                        return (irc::irc_char_traits::compare(s1.c_str(), s2.c_str(), s1.length()) < 0);
                }
-               
+
                /** Hash an irc::string value for hash_map
                 */
                size_t operator()(const irc::string & s) const;
@@ -680,7 +680,7 @@ BEGIN_HASHMAP_NAMESPACE
                        if(s1.length() != s2.length()) return true;
                        return (irc::irc_char_traits::compare(s1.c_str(), s2.c_str(), s1.length()) < 0);
                }
-               
+
                /** Hash a std::string using RFC1459 case sensitivity rules
                * @param s A string to hash
                * @return The hash value
index 18bb1c28f2e78f64ac1aa903c6371395ccedfd2a..7a06f299c96ff82b562395c74c96b1873efda167 100644 (file)
@@ -149,18 +149,6 @@ template<typename T> inline long ConvToInt(const T &in)
        return atoi(tmp.str().c_str());
 }
 
-template<typename CharT, typename TraitsT, std::size_t N>
-static inline bool operator == (std::basic_string<CharT, TraitsT> const &lhs, char const (&rhs)[N])
-{
-       return lhs.length() == N - 1 && !std::memcmp(lhs.data(), rhs, N - 1);
-}
-
-template<typename CharT, typename TraitsT, std::size_t N>
-static inline bool operator != (std::basic_string<CharT, TraitsT> const &lhs, char const (&rhs)[N])
-{
-       return !(lhs == rhs);
-}
-
 /** Template function to convert integer to char, storing result in *res and
  * also returning the pointer to res. Based on Stuart Lowe's C/C++ Pages.
  * @param T input value