blob: 3f9ed61db74a6fbb7daeffdcd6632b47e049384a [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 Kremenek21142582010-12-23 19:38:26 +000014#include "clang/StaticAnalyzer/ManagerRegistry.h"
Chandler Carruth0059f1c2009-11-11 19:43:37 +000015
16using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000017using namespace ento;
Chandler Carruth0059f1c2009-11-11 19:43:37 +000018
19StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
20
21ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;