clang 19.0.0git
CommonBugCategories.h
Go to the documentation of this file.
1//=--- CommonBugCategories.h - Provides common issue categories -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_STATICANALYZER_CORE_BUGREPORTER_COMMONBUGCATEGORIES_H
10#define LLVM_CLANG_STATICANALYZER_CORE_BUGREPORTER_COMMONBUGCATEGORIES_H
11
12// Common strings used for the "category" of many static analyzer issues.
13namespace clang {
14namespace ento {
15namespace categories {
16extern const char *const AppleAPIMisuse;
17extern const char *const CoreFoundationObjectiveC;
18extern const char *const LogicError;
19extern const char *const MemoryRefCount;
20extern const char *const MemoryError;
21extern const char *const UnixAPI;
22extern const char *const CXXObjectLifecycle;
23extern const char *const CXXMoveSemantics;
24extern const char *const SecurityError;
25extern const char *const UnusedCode;
26extern const char *const TaintedData;
27} // namespace categories
28} // namespace ento
29} // namespace clang
30#endif
const char *const AppleAPIMisuse
const char *const CoreFoundationObjectiveC
const char *const CXXMoveSemantics
const char *const MemoryRefCount
const char *const CXXObjectLifecycle
const char *const SecurityError
The JSON file list parser is used to communicate input to InstallAPI.