We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So I've ported md4c to the D language (https://github.com/p0nce/commonmark-d) and while translating I found a little mistake here:
https://github.com/mity/md4c/blob/master/md4c/md4c.c#L1690
I think you might mean: sizeof(MD_REF_DEF*) instead of: sizeof(MD_REF_DEF) which takes more memory.
sizeof(MD_REF_DEF*)
sizeof(MD_REF_DEF)
Same issue here: https://github.com/mity/md4c/blob/master/md4c/md4c.c#L1707
and that's all I found. Amazing library!
The text was updated successfully, but these errors were encountered:
728f2af
Thanks for the bug report.
Nice to know about the port. I have added a link to it into README.md.
README.md
Sorry, something went wrong.
No branches or pull requests
So I've ported md4c to the D language (https://github.com/p0nce/commonmark-d) and while translating I found a little mistake here:
https://github.com/mity/md4c/blob/master/md4c/md4c.c#L1690
I think you might mean:
sizeof(MD_REF_DEF*)
instead of:
sizeof(MD_REF_DEF)
which takes more memory.
Same issue here: https://github.com/mity/md4c/blob/master/md4c/md4c.c#L1707
and that's all I found. Amazing library!
The text was updated successfully, but these errors were encountered: