xref: /llvm-project/clang/lib/StaticAnalyzer/Core/Checker.cpp (revision 0dc0c5411fdf2fd002d070a5b4361ebf9205cb15)
1 //== Checker.cpp - Registration mechanism for checkers -----------*- 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 Checker, used to create and register checkers.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/StaticAnalyzer/Core/Checker.h"
15 
16 using namespace clang;
17 using namespace ento;
18 
19 StringRef CheckerBase::getTagDescription() const {
20   // FIXME: We want to return the package + name of the checker here.
21   return "A Checker";
22 }
23 
24 void Checker<check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
25              check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
26              check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
27              check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
28              check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
29              check::_VoidCheck, check::_VoidCheck, check::_VoidCheck
30              >::anchor() { }
31