-
Notifications
You must be signed in to change notification settings - Fork 5
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
runtime: Use proper usize type for lengths #27
Conversation
6d2456f
to
1f10cd3
Compare
If you rebase this on master, it should show the relevant change only. :) |
1f10cd3
to
3a71d9e
Compare
Rebased onto master. |
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.
Typo in commit message: "lenghts"
3a71d9e
to
434da96
Compare
I also updated the vendored dependency. That should have already been part of the 0.11.0 update, but it kinda fell through. |
Sorry for taking so long to look at a trivial patch. I'll give this a lookover tomorrow, I promise. 🙇♂️ |
Don't worry about it. :) |
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.
Sorry, I broke my promise :^( Just a couple quick nitpicks, and this is good to go.
c7b580b
to
8739a28
Compare
I fixed the error texts and rebased onto master. |
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.
Could you please also squash the commits into a single one? The PR title seems like a good title for the commit, please include the category as well.
6902558
to
4af0346
Compare
4af0346
to
fd56486
Compare
@sin-ack Squashed the commits into one |
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.
Awesome! Thanks for doing this, and thanks for being patient with me. :)
This PR changes the used integer types to
usize
for cases where it should be platform dependent, in order to compilezigself
for other platforms likearmv7
.Depends on #25.