-
Notifications
You must be signed in to change notification settings - Fork 3k
Make a few trivial syntactic changes to better support cross-compilation #9681
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
Conversation
@NeilMacMullen, thank you for your changes. |
@NeilMacMullen, thank you for your changes. |
CI started whist final review comes in. Betting on reviewer being OK with changes |
Test run: SUCCESSSummary: 12 of 12 test jobs passed |
@@ -990,7 +990,7 @@ void AT_CellularSMS::add_info(sms_info_t *info, int index, int part_number) | |||
return; | |||
} | |||
sms_info_t *current = _sms_info; | |||
sms_info_t *prev; | |||
sms_info_t *prev=NULL; |
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.
This may fail on astyle check.
sms_info_t *prev = NULL:
will pass.
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.
thanks - already fixed on second commit
Patch application did not like this attempting to be applied onto It could be that this is sitting on top of the cellular refactor. Retargeting for 5.12. |
Description
It's much easier to debug the cellular stack when cross-compiled to desktop. This PR cleans up a couple of warnings/errors under Visual C++ to simplify cross-compilation.
Pull request type
Reviewers