aboutsummaryrefslogtreecommitdiffstats
path: root/common/place.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-15 20:00:11 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-16 14:44:10 +0200
commit432fe522742c28d6561c85fa8ab16a216a0ac3c5 (patch)
tree0a14475405e3d257d60c0258c26d7e29671f65d4 /common/place.cc
parent47566cf5e930aeb9a447dbef603ba64690335382 (diff)
downloadnextpnr-432fe522742c28d6561c85fa8ab16a216a0ac3c5.tar.gz
nextpnr-432fe522742c28d6561c85fa8ab16a216a0ac3c5.tar.bz2
nextpnr-432fe522742c28d6561c85fa8ab16a216a0ac3c5.zip
Remove dead code
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'common/place.cc')
-rw-r--r--common/place.cc8
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)