commit 2c53f0315ec2769fbd28df0c1b40bd890e218975
Author: Jean-Marc Lasgouttes <lasgout...@lyx.org>
Date:   Fri Nov 4 21:36:43 2022 +0100

    Fix another use of unqualified std::move
---
 src/Buffer.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/Buffer.cpp b/src/Buffer.cpp
index 3c7f1cc..9826b51 100644
--- a/src/Buffer.cpp
+++ b/src/Buffer.cpp
@@ -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()) {
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to