mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Fix another use of unqualified std::move
This commit is contained in:
parent
9dc6f09c65
commit
2c53f0315e
@ -1830,7 +1830,7 @@ Buffer::ExportStatus Buffer::makeLaTeXFile(FileName const & fname,
|
||||
lyx_exit(1);
|
||||
}
|
||||
|
||||
d->texrow = move(os.texrow());
|
||||
d->texrow = std::move(os.texrow());
|
||||
|
||||
ofs.close();
|
||||
if (ofs.fail()) {
|
||||
|
Loading…
Reference in New Issue
Block a user