...
Not declaring an unchanging value const
prohibits the function from working with values already cast as const
. One could sidestep this problem by typecasting type casting away the const
, but that violates EXP05-A. Do not cast away a const qualification.
...
Wiki Markup |
---|
\[[ISO/IEC 9899-:1999|AA. C References#ISO/IEC 9899-1999]\] \[[ISO/IEC PDTR 24772|AA. C References#ISO/IEC PDTR 24772]\] "CSJ Passing parameters and return values" |
...