]> git.lyx.org Git - lyx.git/blobdiff - src/TocBackend.cpp
Try to be more pedantic wrt blank lines in lyx2lyx output
[lyx.git] / src / TocBackend.cpp
index 859e6e86e8e306ec35600e448754ac503f581e17..c0a4373923f631eb51a29688cd5051db2c927b19 100644 (file)
@@ -147,7 +147,7 @@ shared_ptr<Toc> TocBackend::toc(string const & type)
 TocBuilder & TocBackend::builder(string const & type)
 {
        auto p = lyx::make_unique<TocBuilder>(toc(type));
-       return * builders_.insert(make_pair(type, move(p))).first->second;
+       return * builders_.insert(make_pair(type, std::move(p))).first->second;
 }