diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-26 12:10:22 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-26 12:11:15 +0200 |
commit | e51dd15b6bca1bb9e01b5275e68036a658f6c504 (patch) | |
tree | fc6e7dc96de60b22d0e1bb08c963a47b9969dc52 | |
parent | 0a176b4fdeff1545476d968b607035530c9e5964 (diff) | |
download | nextpnr-e51dd15b6bca1bb9e01b5275e68036a658f6c504.tar.gz nextpnr-e51dd15b6bca1bb9e01b5275e68036a658f6c504.tar.bz2 nextpnr-e51dd15b6bca1bb9e01b5275e68036a658f6c504.zip |
clang fix
-rw-r--r-- | ice40/cells.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/cells.cc b/ice40/cells.cc index 4ca579f6..b1c92141 100644 --- a/ice40/cells.cc +++ b/ice40/cells.cc @@ -127,7 +127,7 @@ std::unique_ptr<CellInfo> create_ice_cell(Context *ctx, IdString type, std::stri } else { log_error("unable to create iCE40 cell of type %s", type.c_str(ctx)); } - return std::move(new_cell); + return new_cell; } void lut_to_lc(const Context *ctx, CellInfo *lut, CellInfo *lc, bool no_dff) |