aboutsummaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2015-02-26 07:41:46 +0000
committerGravatar Peter Powell2015-02-26 07:41:46 +0000
commitdb7b2a603d4a4ce0f9bc71173b379b42d0416759 (patch)
treef9c23843d1d4c76a753b91526607b374e48a7ee9 /src/hashcomp.cpp
parentMerge pull request #1002 from SaberUK/insp20+fix-cgiirc-crash (diff)
Fix various Clang warnings.
- warning: 'register' storage class specifier is deprecated.
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 3fb7f84fb..e0347421b 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -140,7 +140,7 @@ void nspace::strlower(char *n)
* only with *x replaced with national_case_insensitive_map[*x].
* This avoids a copy to use hash<const char*>
*/
- register size_t t = 0;
+ size_t t = 0;
for (std::string::const_iterator x = s.begin(); x != s.end(); ++x) /* ++x not x++, as its faster */
t = 5 * t + national_case_insensitive_map[(unsigned char)*x];
return t;
@@ -149,7 +149,7 @@ void nspace::strlower(char *n)
size_t CoreExport irc::hash::operator()(const irc::string &s) const
{
- register size_t t = 0;
+ size_t t = 0;
for (irc::string::const_iterator x = s.begin(); x != s.end(); ++x) /* ++x not x++, as its faster */
t = 5 * t + national_case_insensitive_map[(unsigned char)*x];
return t;