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
The reason for this is the way they are represented at the time macro expansion happens: Integers are stored as a u64 value, their representation in the source is lost. Float literals are stored as strings at this point.
Minor papercut:
0xff
is converted into255
while1.000....1
isn't (the delta from 1.0 is clearly smaller than IEEE854 double's machine epsilon)May or may not be related to #28415
The text was updated successfully, but these errors were encountered: