mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
fix(libutil): remove no-op move from const
This commit is contained in:
parent
6c3f720e2c
commit
8dd787fbf6
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue