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
MSVC stronk type is larger than the underlying type. Found when: static_assert(sizeof(int8_t_wrapper_type == sizeof(int8_t)); failed in CI.
This is probably due to padding, however wrapping stronk in #pragma pack(push, 1) did not help.
This might explain why construction is so much slower on MSVC
The text was updated successfully, but these errors were encountered:
MSVC stronk type is larger than the underlying type. Found when:
static_assert(sizeof(int8_t_wrapper_type == sizeof(int8_t));
failed in CI.This is probably due to padding, however wrapping stronk in
#pragma pack(push, 1)
did not help.This might explain why construction is so much slower on MSVC
The text was updated successfully, but these errors were encountered: