aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/Checker.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-11-23 18:53:03 +0000
committerTed Kremenek <kremenek@apple.com>2009-11-23 18:53:03 +0000
commitc6e11fff7623e07681a29c103fcf0bb5c5b39140 (patch)
treeca68c6aa24d9a22a51d2682db062dae314177d72 /lib/Analysis/Checker.cpp
parent616cf051d45b9e5294da36aaa40b09d79a9eddc4 (diff)
Provide out-of-line definition for destructor of Checker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89688 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Checker.cpp')
-rw-r--r--lib/Analysis/Checker.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/Analysis/Checker.cpp b/lib/Analysis/Checker.cpp
new file mode 100644
index 0000000000..985b1e0a1d
--- /dev/null
+++ b/lib/Analysis/Checker.cpp
@@ -0,0 +1,18 @@
+//== Checker.h - Abstract interface for checkers -----------------*- 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 Checker and CheckerVisitor, classes used for creating
+// domain-specific checks.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/Analysis/PathSensitive/Checker.h"
+using namespace clang;
+
+Checker::~Checker() {}