aboutsummaryrefslogtreecommitdiffstats
path: root/src/mediaType.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mediaType.cpp')
-rw-r--r--src/mediaType.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mediaType.cpp b/src/mediaType.cpp
index 71acc2f2..569ccc38 100644
--- a/src/mediaType.cpp
+++ b/src/mediaType.cpp
@@ -105,13 +105,13 @@ void mediaType::generate(utility::outputStream& os, const string::size_type maxL
}
-const bool mediaType::operator==(const mediaType& type) const
+bool mediaType::operator==(const mediaType& type) const
{
return (m_type == type.m_type && m_subType == type.m_subType);
}
-const bool mediaType::operator!=(const mediaType& type) const
+bool mediaType::operator!=(const mediaType& type) const
{
return !(*this == type);
}