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
fix(spanner): avoid evaluation-order issue in function arguments
The behavior of
```
extern void f(std::unique_ptr<T>, T);
std::unique_ptr<T> p = ...;
f(std::move(p), *p);
```
is undefined, so introduce a sequence point between dereferencing
the `unique_ptr` and moving it.
0 commit comments