infer_clone/infer/documentation/issues/POINTER_TO_CONST_OBJC_CLASS.md

226 B

In Objective-C, const Class * represents a mutable pointer pointing to an Objective-C class where the ivars cannot be changed. More useful is Class *const instead, meaning the destination of the pointer cannot be changed.