summaryrefslogtreecommitdiff
path: root/src/hashcomp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hashcomp.cpp')
-rw-r--r--src/hashcomp.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp
index 6374639d8..4fb1cfa98 100644
--- a/src/hashcomp.cpp
+++ b/src/hashcomp.cpp
@@ -1,7 +1,7 @@
/*
*
* (C) 2002-2011 InspIRCd Development Team
- * (C) 2008-2016 Anope Team <team@anope.org>
+ * (C) 2008-2017 Anope Team <team@anope.org>
*
* Please read COPYING and README for further details.
*/
@@ -43,7 +43,7 @@ unsigned char Anope::toupper(unsigned char c)
* which is a case-insensitive equivalent to std::string.
*
*/
-
+
bool ci::ci_char_traits::eq(char c1st, char c2nd)
{
return case_map_upper[static_cast<unsigned char>(c1st)] == case_map_upper[static_cast<unsigned char>(c2nd)];
@@ -161,4 +161,3 @@ bool sepstream::StreamEnd()
{
return this->pos > this->tokens.length();
}
-