Clang Project

clang_source_code/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
1//=--- CommonBugCategories.cpp - 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#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"
10
11// Common strings used for the "category" of many static analyzer issues.
12namespace clang { namespace ento { namespace categories {
13
14const char * const CoreFoundationObjectiveC = "Core Foundation/Objective-C";
15const char * const LogicError = "Logic error";
16const char * const MemoryRefCount =
17  "Memory (Core Foundation/Objective-C/OSObject)";
18const char * const MemoryError = "Memory error";
19const char * const UnixAPI = "Unix API";
20}}}
21