clang API Documentation
00001 //=--- CommonBugCategories.cpp - Provides common issue categories -*- C++ -*-=// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #include "clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h" 00011 00012 // Common strings used for the "category" of many static analyzer issues. 00013 namespace clang { namespace ento { namespace categories { 00014 00015 const char * const CoreFoundationObjectiveC = "Core Foundation/Objective-C"; 00016 const char * const LogicError = "Logic error"; 00017 const char * const MemoryCoreFoundationObjectiveC = 00018 "Memory (Core Foundation/Objective-C)"; 00019 const char * const UnixAPI = "Unix API"; 00020 }}}