]> git.lyx.org Git - features.git/commitdiff
Fix another use of unqualified std::move
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 4 Nov 2022 20:36:43 +0000 (21:36 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 4 Nov 2022 20:36:43 +0000 (21:36 +0100)
src/Buffer.cpp

index 3c7f1cc1e0f46c26fc9170d643cff3b50def377f..9826b51f7fd3b0bf068a8961be5bf141c878083c 100644 (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()) {