aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding.cpp')
-rw-r--r--src/encoding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding.cpp b/src/encoding.cpp
index 3ab9194f..202dfe90 100644
--- a/src/encoding.cpp
+++ b/src/encoding.cpp
@@ -97,13 +97,13 @@ encoding& encoding::operator=(const string& name)
}
-const bool encoding::operator==(const encoding& value) const
+bool encoding::operator==(const encoding& value) const
{
return (utility::stringUtils::toLower(m_name) == value.m_name);
}
-const bool encoding::operator!=(const encoding& value) const
+bool encoding::operator!=(const encoding& value) const
{
return !(*this == value);
}