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
`free_operators.hpp` had a couple of instances of narrowing conversions
within braced initializers, which is ill-formed since C++11.
`type_traits.hpp` had two instances of aggregates being
value-initialized using empty parentheses. Since these aggregates had
implicitly deleted default constructors (due to the presence of `const`
data members), value-initialization performs default-initialization,
which is ill-formed. We need aggregate-initialization to be performed,
so the initialization must use braces instead of parentheses for C++11
and later.
Change-Id: Ie4d0365fed7fcccf18dfb2c0b341a3bb34abe645
Cherry-picked from the develop branch
0 commit comments