We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RULE-8-13
Writing to a struct field should be considered writing to the object itself.
struct S { int* x; }; void example_function(struct S s) { // COMPLIANT - can't be const, written to in struct call s->x = 1; }
Status