Revert "Remove unneeded std::move"

This confuses gcc 4.9

This reverts commit 44e88a4c13.
This commit is contained in:
Jean-Marc Lasgouttes 2019-06-07 19:41:16 +02:00
parent bf99ece736
commit 41c0fc171a

View File

@ -74,7 +74,7 @@ Changer MetricsBase::changeFontSet(string const & name)
&& ((isTextFont(oldname) && oldcolor != Color_foreground)
|| (isMathFont(oldname) && oldcolor != Color_math)))
font.setColor(oldcolor);
return rc;
return move(rc);
}