Files
create/src/Mod/Path
howetuft fb64a860e6 Fix -Wredundant-move warnings, 2nd try
std::move is redundant when it is used to return a local object from a function (eg return std::move(local)): indeed, returning a local object from a function implicitly moves it. Moreover using std::move this way
See https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rf-return-move-local
However, in order to avoid -Wreturn-std-move as well, a Base object is move-constructed
from Derived when required.
2019-11-18 13:44:40 +01:00
..
2019-07-28 23:25:26 +02:00
2019-11-18 12:32:27 +01:00
2019-07-09 21:41:33 -07:00
2019-07-15 23:20:52 -03:00
2019-08-17 15:15:48 +02:00