From b14b091f702040c28e512d34b1ba002825aed831 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Fri, 17 Jan 2020 20:03:52 -0500 Subject: [PATCH] Remove redefinition of hash --- Editor/Common.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Editor/Common.hpp b/Editor/Common.hpp index 2126592..a860758 100644 --- a/Editor/Common.hpp +++ b/Editor/Common.hpp @@ -48,10 +48,3 @@ QString ShowInGraphicalShellString(); /* Used for generating transform matrices to map SVG coordinate space */ QTransform RectToRect(const QRectF& from, const QRectF& to); - -namespace std { -template <> -struct hash { - std::size_t operator()(const QString& s) const noexcept { return qHash(s); } -}; -} // namespace std