X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FMetricsInfo.cpp;h=89196f3fb3be765fd000b1a18ace026a16054f47;hb=dfc3db773ac79e33b828b2d2b4a008c8a37cd4e9;hp=4688d128eb7cbd30d03be6c8710ffcbe7ed1370f;hpb=da57154f94077604d9bddcff7360307897cbad3f;p=lyx.git diff --git a/src/MetricsInfo.cpp b/src/MetricsInfo.cpp index 4688d128eb..89196f3fb3 100644 --- a/src/MetricsInfo.cpp +++ b/src/MetricsInfo.cpp @@ -33,7 +33,7 @@ namespace lyx { ///////////////////////////////////////////////////////////////////////// MetricsBase::MetricsBase(BufferView * b, FontInfo f, int w) - : bv(b), font(move(f)), fontname("mathnormal"), + : bv(b), font(std::move(f)), fontname("mathnormal"), textwidth(w), macro_nesting(0), solid_line_thickness_(1), solid_line_offset_(1), dotted_line_thickness_(1) { @@ -78,7 +78,9 @@ Changer MetricsBase::changeFontSet(string const & name) #if __cplusplus >= 201402L return rc; #else - return move(rc); + /** In theory, this is not needed with C++11, and modern compilers + * will complain in C++11 mode, but gcc 4.9 requires this. */ + return std::move(rc); #endif }