llvm/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp

//=--- CommonBugCategories.cpp - Provides common issue categories -*- C++ -*-=//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h"

// Common strings used for the "category" of many static analyzer issues.
namespace clang {
namespace ento {
namespace categories {

const char *const AppleAPIMisuse =;
const char *const CoreFoundationObjectiveC =;
const char *const LogicError =;
const char *const MemoryRefCount =;
const char *const MemoryError =;
const char *const UnixAPI =;
const char *const CXXObjectLifecycle =;
const char *const CXXMoveSemantics =;
const char *const SecurityError =;
const char *const UnusedCode =;
const char *const TaintedData =;
} // namespace categories
} // namespace ento
} // namespace clang