1//=--- CommonBugCategories.cpp - Provides common issue categories -*- C++ -*-=// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9 10#include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h" 11 12// Common strings used for the "category" of many static analyzer issues. 13namespace clang { namespace ento { namespace categories { 14 15const char * const CoreFoundationObjectiveC = "Core Foundation/Objective-C"; 16const char * const LogicError = "Logic error"; 17const char * const MemoryCoreFoundationObjectiveC = 18 "Memory (Core Foundation/Objective-C)"; 19const char * const UnixAPI = "Unix API"; 20}}} 21