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: work around msvc compiler bug with range-based-for in constexpr
For some unknown reason MSVC fails to evaluate at
constant-evalutation-time (constexpr) pic_array::appender::operator()
when it uses a range-based-for expression. Manually expanding it, in the
exact same way that the C++ spec says "the implementation" (compiler)
should do it, allows it to proceed.
0 commit comments