clang API Documentation
00001 //=--- CommonBugCategories.h - 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 #ifndef LLVM_CLANG_STATICANALYZER_CORE_BUGREPORTER_COMMONBUGCATEGORIES_H 00011 #define LLVM_CLANG_STATICANALYZER_CORE_BUGREPORTER_COMMONBUGCATEGORIES_H 00012 00013 // Common strings used for the "category" of many static analyzer issues. 00014 namespace clang { 00015 namespace ento { 00016 namespace categories { 00017 extern const char * const CoreFoundationObjectiveC; 00018 extern const char * const LogicError; 00019 extern const char * const MemoryCoreFoundationObjectiveC; 00020 extern const char * const UnixAPI; 00021 } 00022 } 00023 } 00024 #endif 00025