2009-06-02 13:58:47 -04:00
|
|
|
//===- ManagerRegistry.cpp - Pluggble Analyzer module creators --*- C++ -*-===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// This file defines the pluggable analyzer module creators.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2010-02-16 04:31:36 -05:00
|
|
|
#include "clang/Checker/ManagerRegistry.h"
|
2009-06-02 13:58:47 -04:00
|
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
|
|
StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
|
|
|
|
|
|
|
|
|
|
ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;
|