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
/**
* Added due to compiling for Intel MIC with CPP14=TRUE
* GCC Bug Report: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51626
*/
void construct(pointer p)
{
std::allocator<T>().construct(p, value_type());
}
I notice there is a workaround:
https://github.com/gentryx/libflatarray/blob/master/include/libflatarray/aligned_allocator.hpp
This compiler bug is marked as fixed: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51626
Shall the workaround be removed? Is the compiler bug actually fixed?
The text was updated successfully, but these errors were encountered: