mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +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;
|
line = other->line;
|
||||||
column = other->column;
|
column = other->column;
|
||||||
origin = std::move(other->origin);
|
origin = other->origin;
|
||||||
}
|
}
|
||||||
|
|
||||||
Pos::operator std::shared_ptr<Pos>() const
|
Pos::operator std::shared_ptr<Pos>() const
|
||||||
|
Loading…
Reference in New Issue
Block a user