Fix another use of unqualified std::move

This commit is contained in:
Jean-Marc Lasgouttes 2022-11-04 21:36:43 +01:00
parent 9dc6f09c65
commit 2c53f0315e

View File

@ -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()) {