mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
fix(libutil): remove no-op move from const
This commit is contained in:
parent
6c3f720e2c
commit
8dd787fbf6
@ -9,7 +9,7 @@ Pos::Pos(const Pos * other)
|
||||
}
|
||||
line = other->line;
|
||||
column = other->column;
|
||||
origin = std::move(other->origin);
|
||||
origin = other->origin;
|
||||
}
|
||||
|
||||
Pos::operator std::shared_ptr<Pos>() const
|
||||
|
Loading…
Reference in New Issue
Block a user