aboutsummaryrefslogtreecommitdiff
path: root/src/core/Size3D.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Size3D.cpp')
-rw-r--r--src/core/Size3D.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/Size3D.cpp b/src/core/Size3D.cpp
index 4b7850bf38..3ee9fb8e5c 100644
--- a/src/core/Size3D.cpp
+++ b/src/core/Size3D.cpp
@@ -30,14 +30,4 @@ std::string Size3D::to_string() const
{
return support::cpp11::to_string(width) + std::string("x") + support::cpp11::to_string(height) + std::string("x") + support::cpp11::to_string(depth);
}
-
-bool operator!=(const Size3D &lhs, const Size3D &rhs)
-{
- return !(lhs == rhs);
-}
-
-bool operator==(const Size3D &lhs, const Size3D &rhs)
-{
- return (lhs.width == rhs.width) && (lhs.height == rhs.height) && (lhs.depth == rhs.depth);
-}
} \ No newline at end of file