diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/place.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/common/place.cc b/common/place.cc index e3f183a2..0bb5f3af 100644 --- a/common/place.cc +++ b/common/place.cc @@ -36,14 +36,6 @@ #include "arch_place.h" #include "log.h" -namespace std { - template <> struct hash<std::tuple<NEXTPNR_NAMESPACE_PREFIX BelType, int, int>> { - size_t operator()(const std::tuple<NEXTPNR_NAMESPACE_PREFIX BelType, int, int> &x) const noexcept { - return std::hash<int>()(get<0>(x)) + std::hash<int>()(get<1>(x)) + std::hash<int>()(get<2>(x)); - } - }; -}; - NEXTPNR_NAMESPACE_BEGIN void place_design(Design *design) |