ThrowTheSwitch / CMock

CMock - Mock/stub generator for C
http://throwtheswitch.org
MIT License
652 stars 269 forks source link

Make ReturnMemThruPtr pointers const #453

Closed NovaNekmit closed 7 months ago

NovaNekmit commented 11 months ago

Previously, using ReturnMemThruPtr with data defined as const may result in linters warning about discarding const. As the data is just copied by the mock, making the parameter and struct member a pointer-to-const is valid.

This partly addresses #259.