-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor gimli
cleanup
#666
base: master
Are you sure you want to change the base?
Minor gimli
cleanup
#666
Conversation
cda8d07
to
dc02f37
Compare
path.push(char::from_digit((build_id[0] >> 4) as u32, 16)?); | ||
path.push(char::from_digit((build_id[0] & 0xf) as u32, 16)?); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, this is significantly noisier in practice... I think I'd prefer to keep fn hex
.
I'll fix conflict when I have a moment. Sorry for not updating yet - doing real life stuff over the weekend. |
that's fine! I actually was speaking up because I would recommend you not update this until after #662 lands... |
cfd94f5
to
b9e231e
Compare
Noticed while considering
backtrace_in_libstd
, figured it was worth making it more clear which imports needed std, and removing some pointless casting and such.