[LyX/master] Fix another use of unqualified std::move

Jean-Marc Lasgouttes lasgouttes at lyx.org
Fri Nov 4 19:44:04 UTC 2022


commit 2c53f0315ec2769fbd28df0c1b40bd890e218975
Author: Jean-Marc Lasgouttes <lasgouttes at 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()) {


More information about the lyx-cvs mailing list