-
Notifications
You must be signed in to change notification settings - Fork 0
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
[ Code, notes ], Updated struct padding concepts #10
Conversation
* Has 4 differnet struct memory layout * Gives basic understanding of how struct padding is performed.
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.
check-spelling found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.Unrecognized words (704)
Some files were automatically ignored 🙈These sample patterns would exclude them:
You should consider excluding directory paths (e.g. You should consider adding them to:
File matching is via Perl regular expressions. To check these files, more of their words need to be in the dictionary than not. You can use To use the spell-check-this repository, accept these unrecognized words as correct, and update file exclusions, you could run the following commands... in a clone of the [email protected]:M0hanrajp/c-programming.git repository curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/M0hanrajp/c-programming/actions/runs/13269281102/attempts/1'
OR To have the bot accept them for you, comment in the PR quoting the following line: Available 📚 dictionaries could cover words not in the 📘 dictionary
Consider adding them (in with:
extra_dictionaries: |
cspell:cpp/src/stdlib-c.txt
cspell:php/dict/php.txt
cspell:java/src/java.txt
cspell:python/src/common/extra.txt
cspell:filetypes/filetypes.txt To stop checking additional dictionaries, add (in check_extra_dictionaries: '' Forbidden patterns 🙅 (6)In order to address this, you could change the content to not match the forbidden patterns (comments before forbidden patterns may help explain why they're forbidden), add patterns for acceptable instances, or adjust the forbidden patterns themselves. These forbidden patterns matched content: Do not use
|
❌ Errors | Count |
---|---|
116 | |
ℹ️ candidate-pattern | 60 |
❌ check-file-path | 692 |
❌ forbidden-pattern | 16 |
1 |
See ❌ Event descriptions for more information.
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.
LGTM, ignore the spell checker.
Summary of struct-Padding concepts
Further structure padding on nested structures and array of structures need to be studied.