Skip to content

Conversation

@Arakula
Copy link

@Arakula Arakula commented Sep 1, 2025

Cleaned up VS2022 project files that make future enhancements much easier.
Based on that, added x64 / ARM64 / ARM64EC targets.
Plus some very small changes to reduce the annoying warnings a bit.

Copy link
Collaborator

@dag-erling dag-erling left a comment

Choose a reason for hiding this comment

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

Could you please rebase after #129 goes in?

while (n > 0)
{
consumed = tre_mbrtowc(wcptr, regex, n, &state);
consumed = (int)tre_mbrtowc(wcptr, regex, n, &state);
Copy link
Collaborator

Choose a reason for hiding this comment

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

This should no longer be needed, #128 changed consumed to size_t.

/* The last character wasn't complete. Let's not call it a
fatal error. */
consumed = n;
consumed = (int)n;
Copy link
Collaborator

Choose a reason for hiding this comment

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

See above.

parse_ctx.stack = stack;
parse_ctx.re = regex;
parse_ctx.len = n;
parse_ctx.len = (int)n;
Copy link
Collaborator

Choose a reason for hiding this comment

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

This should no longer be needed once #129 goes in

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.

2 participants