diff options
author | Adam <Adam@anope.org> | 2011-09-25 04:19:15 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-09-25 04:19:15 -0400 |
commit | 1f2399de364c09adcce4193895cd362d80ffdfc5 (patch) | |
tree | 5f40fc531f22c174b6e10bb7bc12842a4a21d30b /include/hashcomp.h | |
parent | 43201ead9575a74e350710bc191f4ac67366aca7 (diff) |
Added a new database format and sqlite support. Also moved db-convert to a module.
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 24 |
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 * |