diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-14 18:13:17 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-14 18:13:17 +0000 |
commit | 4ec3cf99371e55ecb261c32fc28859fe90183b7b (patch) | |
tree | e01028c5844c6a6947bf7ca1134afae5ab2bd634 /clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp | |
parent | 2ef5f3c1c5b09b135eec7ff1986feb829652e0ed (diff) | |
download | bcm5719-llvm-4ec3cf99371e55ecb261c32fc28859fe90183b7b.tar.gz bcm5719-llvm-4ec3cf99371e55ecb261c32fc28859fe90183b7b.zip |
[analyzer] Remove ManagerRegistry which is not used. In the future we may load analyzer plugins dynamically but
registration through static constructors should be avoided.
llvm-svn: 125502
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp b/clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp deleted file mode 100644 index 229e51e52fe..00000000000 --- a/clang/lib/StaticAnalyzer/Core/ManagerRegistry.cpp +++ /dev/null @@ -1,21 +0,0 @@ -//===- 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. -// -//===----------------------------------------------------------------------===// - -#include "clang/StaticAnalyzer/Core/ManagerRegistry.h" - -using namespace clang; -using namespace ento; - -StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0; - -ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0; |