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
// before
stateProxy.put(std::move(state.previousState)); // UB, construct from dangling reference// after
stateProxy.take(std::move(state)).put(std::move(state.previousState)); // still UB, but clang-tidy can detect use-after-move