Skip to content
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

Merged
merged 4 commits into from
Feb 6, 2025
Merged

Backports / 11.2.0-beta.1 #7279

merged 4 commits into from
Feb 6, 2025

Conversation

cknitt
Copy link
Member

@cknitt cknitt commented Feb 5, 2025

No description provided.

Copy link
Contributor

@tsnobip tsnobip left a 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);
Copy link
Contributor

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

Suggested change
ignore (scanDigits scanner ~base);
let _foundDigits: bool = scanDigits scanner ~base;

But it's likely something we should instead fix on master.

Copy link
Member Author

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?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cknitt done here
#7280

@cknitt cknitt merged commit 7768ad7 into 11.0_release Feb 6, 2025
14 checks passed
@cknitt cknitt deleted the backport branch February 6, 2025 07:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants