case=111068 is implemented in build 2353
https://support.wholetomato.com/default.asp?W404#2353
Starting in 2353, directives in source comments can prevent issues from being flagged in particular instances without disabling a Code Inspection checker globally.
Directives that are processed before parsing:
// vaCI:skipall skip Code Inspection entirely
Directives that are processed after parsing:
// vaCI:skip skip fix(es) from the current line
// vaCI:skip+10 skip 10 lines, starting with current line
// vaCI:skip-10 skip 10 previous lines, starting with current line
// vaCI:skip+* skip until the end
// vaCI:skip-* skip from the beginning
// vaCI:<any skip>:checker,checker,...
// skip only specified checker(s);
// checker names are matched by given substring;
// code issue names/descriptions are not matched;
An example that skips all modernize-make-unique and modernize-make-shared issues:
// vaCI:skipall:unique,shared