]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Checker/ManagerRegistry.cpp
Update clang to r96341.
[FreeBSD/FreeBSD.git] / lib / Checker / ManagerRegistry.cpp
1 //===- ManagerRegistry.cpp - Pluggble Analyzer module creators --*- 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 //  This file defines the pluggable analyzer module creators.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "clang/Checker/ManagerRegistry.h"
15
16 using namespace clang;
17
18 StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
19
20 ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;