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
Prevent extraneous default construction when decoding maps
The `operator[]` on `std::map` will default construct the value if it
does not exist, and then move assign it the requested value.
By using the C++17 method `insert_or_assign`, we prevent that extra
object construction.
0 commit comments