diff options
-rw-r--r-- | common/relptr.h | 3 | ||||
-rw-r--r-- | nexus/fasm.cc | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/common/relptr.h b/common/relptr.h index f8f1d429..035d61fb 100644 --- a/common/relptr.h +++ b/common/relptr.h @@ -36,4 +36,7 @@ NPNR_PACKED_STRUCT(template <typename T> struct RelSlice { const T &operator*() const { return *(get()); } const T *operator->() const { return get(); } + + RelSlice(const RelSlice &) = delete; + RelSlice &operator=(const RelSlice &) = delete; }); diff --git a/nexus/fasm.cc b/nexus/fasm.cc index f320405d..9e43972b 100644 --- a/nexus/fasm.cc +++ b/nexus/fasm.cc @@ -186,7 +186,7 @@ struct NexusFasmWriter { int r = bel.tile / ctx->chip_info->width; int c = bel.tile % ctx->chip_info->width; - auto bel_data = ctx->bel_data(bel); + auto &bel_data = ctx->bel_data(bel); r += bel_data.rel_y; c += bel_data.rel_x; std::string s = stringf("R%dC%d_%s", r, c, ctx->nameOf(ctx->bel_data(bel).name)); |