1259701Sdim//=--- CommonBugCategories.h - Provides common issue categories -*- C++ -*-===//
2259701Sdim//
3259701Sdim//                     The LLVM Compiler Infrastructure
4259701Sdim//
5259701Sdim// This file is distributed under the University of Illinois Open Source
6259701Sdim// License. See LICENSE.TXT for details.
7259701Sdim//
8259701Sdim//===----------------------------------------------------------------------===//
9259701Sdim
10259701Sdim#ifndef LLVM_CLANG_STATIC_ANALYZER_BUG_CATEGORIES_H
11259701Sdim#define LLVM_CLANG_STATIC_ANALYZER_BUG_CATEGORIES_H
12259701Sdim
13259701Sdim// Common strings used for the "category" of many static analyzer issues.
14259701Sdimnamespace clang {
15259701Sdim  namespace ento {
16259701Sdim    namespace categories {
17259701Sdim      extern const char * const CoreFoundationObjectiveC;
18259701Sdim      extern const char * const LogicError;
19259701Sdim      extern const char * const MemoryCoreFoundationObjectiveC;
20259701Sdim      extern const char * const UnixAPI;
21259701Sdim    }
22259701Sdim  }
23259701Sdim}
24259701Sdim#endif
25259701Sdim
26