]> git.lyx.org Git - lyx.git/blobdiff - src/TexRow.cpp
* Document prefs: rename Format -> Output
[lyx.git] / src / TexRow.cpp
index 0d6596680be0d5684e17bbef20354297334a4b15..9c20f25df9f6151b2ec103275c6677b0786b7efa 100644 (file)
@@ -38,14 +38,14 @@ namespace lyx {
 
 
 TexString::TexString(docstring s)
-       : str(move(s)), texrow(TexRow())
+       : str(std::move(s)), texrow(TexRow())
 {
        texrow.setRows(1 + count(str.begin(), str.end(), '\n'));
 }
 
 
 TexString::TexString(docstring s, TexRow t)
-       : str(move(s)), texrow(move(t))
+       : str(std::move(s)), texrow(std::move(t))
 {
        validate();
 }
@@ -235,7 +235,7 @@ void TexRow::append(TexRow other)
        RowList::iterator it = other.rowlist_.begin();
        RowList::iterator const end = other.rowlist_.end();
        LASSERT(it != end, return);
-       currentRow().append(move(*it++));
+       currentRow().append(std::move(*it++));
        move(it, end, back_inserter(rowlist_));
 }