-
Notifications
You must be signed in to change notification settings - Fork 318
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
nrf_rpc: fix build error for C++ #1514
Conversation
Why is C code built by C++ compiler? |
Because Matter firmware needs to include |
I do not think that I do not like forced typecasting since it might dig in deep the type mismatching. Would it be more meaningful to move inline functions into C file and remove |
As long as the inline functions don't use any C-only features like compound literals, there's no issue with that, no? Moving the functions to C file will not remove the casts. To make it 100% type-safe I would probably need to duplicate some code, which contradicts the authors' intention to optimize the code size of this fragment. |
Discussed IRL. Let it be but for future to be accurate with potential miscasting in such functions. |
a57d365
to
08c0bc6
Compare
e34e7c9
to
ba87239
Compare
In C++, conversion from a function pointer to void* is either undefined (prior to C++11) or not implicit. Move the static inline functions to the C file for better portability. The flash impact imposed by this is negligible. Signed-off-by: Damian Krolik <[email protected]>
ba87239
to
22f816f
Compare
@doki-nordic Could you please review? |
4bd5cc6
to
22f816f
Compare
In C++, conversion from a function pointer to void* is either undefined (prior to C++11) or not implicit.
Move the static inline functions to the C file for better portability. The flash impact imposed by this is negligible.