We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e79fe2 commit bc6b15dCopy full SHA for bc6b15d
1 file changed
lib/suppressions.h
@@ -159,8 +159,8 @@ class CPPCHECKLIB SuppressionList {
159
std::string macroName;
160
std::size_t hash{};
161
bool thisAndNextLine{}; // Special case for backwards compatibility: { // cppcheck-suppress something
162
- bool matched{};
163
- bool checked{};
+ bool matched{}; /** This suppression was fully matched in an isSuppressed() call */
+ bool checked{}; /** This suppression applied to code which was being analyzed but did not match the error in an isSuppressed() call */
164
bool isInline{};
165
166
enum : std::int8_t { NO_LINE = -1 };
0 commit comments