Multi-line comment style in rtwbuild code generation.
1 次查看(过去 30 天)
显示 更早的评论
I am using Simulink/Embedded Coder to generate C++ code from MATLAB functions in MATLAB R2018a.
I have observed that multi-line comments
% My
% multi-line
% comment
result in the following C++ code
/* My */
/* multi-line */
/* comment */
by setting the 'CommentStyle' parameter to 'Multi-line' in the Simulink Coder model configuration parameters.
Especially for multi-line comments along several lines, the trailing */ in each comment line looks rather cluttered. Is there a way or parameter to get something like the C++ code below?
/* My
* multi-line
* comment
*/
4 个评论
Rik
2022-1-18
I would suggest submitting a bug report or an enhancement request. The parameter name sounds like it should generate the style you indicated.
Maybe this is to increase portability of code. If know that for C not all compilers will accept multi-line comments.
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!