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
This code seems to violate strict aliasing rule ml_.data_ = *reinterpret_cast<Char**>(const_cast<Char*>(data));. I think it cause compiler's undefined behavior. After I add compiler flag "-fno-strict-aliasing" there is no odd output.
The text was updated successfully, but these errors were encountered:
folly/folly/FBString.h
Lines 691 to 708 in 27f765a
This code seems to violate strict aliasing rule
ml_.data_ = *reinterpret_cast<Char**>(const_cast<Char*>(data));
. I think it cause compiler's undefined behavior. After I add compiler flag "-fno-strict-aliasing" there is no odd output.The text was updated successfully, but these errors were encountered: