summaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-26 23:26:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-26 23:26:52 +0000
commit02e8724bbd180904fd9fdec47ae32e1e45fa37aa (patch)
tree5316fc04609bf3980fdf95ca0addd550e2cd56de /src/hashcomp.cpp
parent3bd571b8bb0cdc2900407a342dd3a77aff2c2d2a (diff)
Tweak hash generation to make it faster
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5545 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/hashcomp.cpp')
-rw-r--r--src/hashcomp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index e00494041..4b3200512 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -87,9 +87,9 @@ size_t nspace::hash<string>::operator()(const string &s) const
* This avoids a copy to use hash<const char*>
*/
register size_t t = 0;
- for (std::string::const_iterator x = s.begin(); x != s.end(); x++) /* ++x not x++, so we don't hash the \0 */
+ for (std::string::const_iterator x = s.begin(); x != s.end(); ++x) /* ++x not x++, as its faster */
t = 5 * t + lowermap[(unsigned char)*x];
- return size_t(t);
+ return t;
}
bool irc::StrHashComp::operator()(const std::string& s1, const std::string& s2) const