1 //=--- CommonBugCategories.cpp - Provides common issue categories -*- C++ -*-=//
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
7 //===----------------------------------------------------------------------===//
9 #include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"
11 // Common strings used for the "category" of many static analyzer issues.
14 namespace categories
{
16 const char *const CoreFoundationObjectiveC
= "Core Foundation/Objective-C";
17 const char *const LogicError
= "Logic error";
18 const char *const MemoryRefCount
=
19 "Memory (Core Foundation/Objective-C/OSObject)";
20 const char *const MemoryError
= "Memory error";
21 const char *const UnixAPI
= "Unix API";
22 const char *const CXXObjectLifecycle
= "C++ object lifecycle";
23 const char *const CXXMoveSemantics
= "C++ move semantics";
24 const char *const SecurityError
= "Security error";
25 const char *const UnusedCode
= "Unused code";
26 const char *const TaintedData
= "Tainted data used";
27 } // namespace categories