blob: d11a997cc0f601a5381509b5d7fe84c72c8598c0 [file] [log] [blame]
Chandler Carruth0059f1c2009-11-11 19:43:37 +00001//===- 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
Ted Kremenek1309f9a2010-01-25 04:41:41 +000014#include "clang/Checker/ManagerRegistry.h"
Chandler Carruth0059f1c2009-11-11 19:43:37 +000015
16using namespace clang;
17
18StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
19
20ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;