1234287Sdim//=--- CommonBugCategories.h - Provides common issue categories -*- C++ -*-===//
2234287Sdim//
3234287Sdim//                     The LLVM Compiler Infrastructure
4234287Sdim//
5234287Sdim// This file is distributed under the University of Illinois Open Source
6234287Sdim// License. See LICENSE.TXT for details.
7234287Sdim//
8234287Sdim//===----------------------------------------------------------------------===//
9234287Sdim
10234287Sdim#ifndef LLVM_CLANG_STATIC_ANALYZER_CHECKER_CATEGORIES_H
11234287Sdim#define LLVM_CLANG_STATIC_ANALYZER_CHECKER_CATEGORIES_H
12234287Sdim
13234287Sdim// Common strings used for the "category" of many static analyzer issues.
14234287Sdimnamespace clang {
15234287Sdim  namespace ento {
16234287Sdim    namespace categories {
17234287Sdim      extern const char *CoreFoundationObjectiveC;
18234287Sdim      extern const char *MemoryCoreFoundationObjectiveC;
19234287Sdim      extern const char *UnixAPI;
20234287Sdim    }
21234287Sdim  }
22234287Sdim}
23234287Sdim#endif
24234287Sdim
25