-
Notifications
You must be signed in to change notification settings - Fork 456
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
Backports / 11.2.0-beta.1 #7279
Conversation
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.
looks good to me except from this small comment we'd rather fix on master anyway.
@@ -245,25 +251,30 @@ let scanNumber scanner = | |||
8) | |||
| _ -> 10 | |||
in | |||
scanDigits scanner ~base; | |||
ignore (scanDigits scanner ~base); |
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.
not a big fan of ignore here, it would swallow errors if we add an argument to the function later on
ignore (scanDigits scanner ~base); | |
let _foundDigits: bool = scanDigits scanner ~base; |
But it's likely something we should instead fix on 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.
@tsnobip Agreed - would you do a PR on 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.
No description provided.