]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / tools / clang / lib / StaticAnalyzer / Core / CommonBugCategories.cpp
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.
13 namespace clang { namespace ento { namespace categories {
14
15 const char * const CoreFoundationObjectiveC = "Core Foundation/Objective-C";
16 const char * const LogicError = "Logic error";
17 const char * const MemoryCoreFoundationObjectiveC =
18   "Memory (Core Foundation/Objective-C)";
19 const char * const UnixAPI = "Unix API";
20 }}}