You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some paths within py::object from_json(const nl::json& j) the returned object is returned via std::move(obj);. This triggers a redundant-move warning in GCC 12.1, as the move prevents copy elision.
In some paths within
py::object from_json(const nl::json& j)the returned object is returned viastd::move(obj);. This triggers aredundant-movewarning in GCC 12.1, as the move prevents copy elision.