summaryrefslogtreecommitdiff
path: root/include/hashcomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r--include/hashcomp.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h
index 9c1f0d2dc..c36211cde 100644
--- a/include/hashcomp.h
+++ b/include/hashcomp.h
@@ -316,30 +316,6 @@ namespace std
};
}
-/* Define operators for using >> and << with irc::string to an ostream on an istream. */
-/* This was endless fun. No. Really. */
-/* It was also the first core change Ommeh made, if anyone cares */
-
-/** Operator >> for irc::string
- */
-inline std::istream &operator>>(std::istream &is, irc::string &str)
-{
- std::string tmp;
- is >> tmp;
- str = tmp.c_str();
- return is;
-}
-
-/** Operator >> for ci::string
- */
-inline std::istream &operator>>(std::istream &is, ci::string &str)
-{
- std::string tmp;
- is >> tmp;
- str = tmp.c_str();
- return is;
-}
-
/* Define operators for + and == with irc::string to std::string for easy assignment
* and comparison
*