CodeSonar C++ API
[For improved navigation, enable JavaScript.]
csonar_warning_significance_decls.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
21  static const warning_significance UNSPECIFIED;
22 
23 
25  static const warning_significance SECURITY;
26 
27 
29  static const warning_significance RELIABILITY;
30 
31 
33  static const warning_significance REDUNDANCY;
34 
35 
37  static const warning_significance STYLE;
38 
39 
41  static const warning_significance DIAGNOSTIC;
42 
43 
45  static const warning_significance FROM_MANIFEST;
static const warning_significance UNSPECIFIED
No significance value was specified.
Definition: csonar_warning_significance_decls.hpp:21
static const warning_significance DIAGNOSTIC
diagnostic: warnings of this class do not indicate vulnerabilities, they indicate the locations of ev...
Definition: csonar_warning_significance_decls.hpp:41
static const warning_significance RELIABILITY
reliability: a code correctness issue.
Definition: csonar_warning_significance_decls.hpp:29
static const warning_significance REDUNDANCY
redundancy: redundant code; may indicate a logic error.
Definition: csonar_warning_significance_decls.hpp:33
static const warning_significance FROM_MANIFEST
Use this when creating a warning class to denote that the significance is to be read from the manifes...
Definition: csonar_warning_significance_decls.hpp:45
static const warning_significance SECURITY
security: a security vulnerability.
Definition: csonar_warning_significance_decls.hpp:25
static const warning_significance STYLE
style: a violation of one or more coding guidelines.
Definition: csonar_warning_significance_decls.hpp:37